IF functions

P

pejy69

Hi all.

Need some help with the following:
=IF(F2=">50000",10%,IF(F2=">100000",14%,("5%")))
When i run this function everything shows as 5%, yet anything >100000 = 14%,
abd anything >50000 = 10%. Can anyone advise as to what is wrong with my IF
function.

Need help urgently
Thankyou in advance
 
M

Mike H

Hi,

There's a couple of things. First take the percentages out of quotes and
they will return values and second revers the order of the statement so it
evaluates the higher value first.

=IF(F2>=100000,10%,IF(F2>=50000,14%,5%))

Mike
 
M

Mike H

I did of course mean to change the percentages too!!

=IF(F2>=100000,14%,IF(F2>=50000,10%,5%))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top