Thread: IF Statement
View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Snake_Plisken[_2_] Snake_Plisken[_2_] is offline
external usenet poster
 
Posts: 6
Default IF Statement

LOOKUP works perfectly. Again though I need to resolve the issue of orders
over $300. I need the result to be 7% of total. I tried to use multiplication
at the end of string (......,*7%) and also (........,*1.7) neither worked.
Any suggestions?

Thanks

"Don Guillett" wrote:

Use the lookup suggestion

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Snake_Plisken" wrote in message
...
Thanks. This seems to work. However, I can't go pass an 8th condition. Can
I
get more into the cell or is this the limit.
Ex.
=IF((E39+E40)<10.01,3,IF(E39+E40<25,5,IF(E39+E40<4 0,6,IF(E39+E40<55,7,IF(E39+E40<70,8,IF(E39+E40<85, 9,IF(E39+E40<100,10,IF(E39+E40<150,12,IF(E39+E40<2 00,14,IF(E39+E40<300,15,))))))))))

Receive error at 9th
condition...IF(E39+E40<200,14,IF(E39+E40<300,15,)) ))))))))

Last , but not least, I would like every order that is over $300 to have
handling charges equal to 7% of the order (subtot+tax). So would the final
condition read.....IF(E39+E40300,*7%

Would a LOOKUP statement help here?

Again thanks for your help



"Don Guillett" wrote:


if(e39+e40<40,5,if(e39+e40<25,4,etc with ) per if

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Snake_Plisken" wrote in
message
...
I have created an Excel Order form. After the Subtotal and Tax have been
calculated, I want the form to automatically put in the handling
charges.
The IF Statement that I have used to format the cell is:
=IF((E39+E40)<10.01,3,IF(10.01<25,4,IF(25.01<40,5) ))---where E39 =
subtotal
and E40 = tax
Now this formula works great if order is less than 10.01--brings back 3
as
result. And if order is between 10.01 and 25 it brings back 4 as
result.
However, it does not work if amount is above 25.01---still brings back
4
as
result when it should bring back 5. I would also like to continue IF
statement in this cell to bring back results up to $100.
Am I doing something wrong here? Why does formula work great up to a
point,
but no further??
Could someone please help.

Thank you