IF STATEMENT

  • Thread starter Thread starter TRYIN
  • Start date Start date
T

TRYIN

I NEED HELP WITH THE FOLLOWING IF STATEMENT:
IF A1 IS BETWEEN 1% AND 1.9% =50
IF A1 IS BETWEEN 2% AND 2.9% =100
IF A1 IS 4% OR MORE =150
 
=IF(AND(A1>=0.01,A1<=0.019),50,IF(AND(A1>=0.02,A1<=0.03),100,IF(A1>=0.04,150,"")))

add the condition for 3%-3.9% and turn off the caps lock if posting back.
 
Not sure about your ranges, but....

Try this:
=LOOKUP(A1*100,{0,1,2,3},{0,50,100,150})

Is that something you can work with?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)
 

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

Back
Top