Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What if A1 is between 3% and 3.9%?
"TRYIN" wrote in message ... 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 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'll bet this is what you really meant:
=1% but <=1.9% = 50 =2% but <=2.9% = 100 2.9% = 150 =IF(A12.9%,150,IF(A1=2%,100,IF(A1=1%,50,0))) -- Biff Microsoft Excel MVP "TRYIN" wrote in message ... 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 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=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. "TRYIN" wrote in message ... 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 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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) "TRYIN" wrote in message ... 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can an If statement answer an If statement? | Excel Discussion (Misc queries) | |||
If Then Statement | Excel Discussion (Misc queries) | |||
appending and IF statement to an existing IF statement | Excel Worksheet Functions | |||
If statement and Isblank statement | Excel Worksheet Functions | |||
Help please, IF statement/SUMIF statement | Excel Worksheet Functions |