I tried to use the formula "IF" to find different rates, one rate is if the #
is >= 2 but <5 and give me the error, please help me
I tried to use the formula "IF" to find different rates, one rate is if the #
is >= 2 but <5 and give me the error, please help me
One way:
=IF(AND(A1>=2,A1<5),rate1,rate2)
or, if you have three rates:
=IF(A1<2,rateA,IF(A1<5, rateB, rateC))
In article <72F19D81-14B0-41A7-963C-B158D0D7A62C@microsoft.com>,
"nsnjlacm" <nsnjlacm@discussions.microsoft.com> wrote:
> I tried to use the formula "IF" to find different rates, one rate is if the #
> is >= 2 but <5 and give me the error, please help me
I'm not sure of the problem that you are getting at but if cell A1 has to be
less than 5 and greater than or equal to 2 then try
=IF(AND(A1>=2,A1<5),"","OUT OF RANGE")
nsnjlacm wrote in message
<72F19D81-14B0-41A7-963C-B158D0D7A62C@microsoft.com>...
>I tried to use the formula "IF" to find different rates, one rate is if the
#
>is >= 2 but <5 and give me the error, please help me
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks