Help with excel IF formula
Last answer on Oct 9, 2009 3:38:50 am BST kirstybill, on Oct 8, 2009 1:33:35 pm BSTHello,
I am trying (hard) to work out the following but everytime I put a formula in I just can't seem to get it right so am looking for some help.
IF C2 >=£0.01 and <=£0.99 then "£0.00"
IF C2 >=£1.00 and <=£4.99 then "£0.15"
IF C2 >=£5.00 and <=£14.99 then "£0.25"
IF C2 >=£15.00 and <=£29.99 then "£0.50"
IF C2>=£30.00 and <=£99.99 then "£1.00"
IF C2>=£100 then £1.30
Thanks in advance.
Kirsty
Configuration: Windows XP Internet Explorer 6.0
=IF(AND(C2>=0.01,C2<=0.99),0,IF(AND(C2>=1,C2<=4.99),0.15,IF(AND(C2>=5,C2<=14.99),0.25,IF(AND(C2>=15,C2<=29.99),0.5,IF(AND(C2>=30,C2<=99.99),1,IF(C1>100,1.3,0))))))
|

