excel error message

mrpearl11

New Member
Joined
May 24, 2011
Messages
15
When i put the following formula I get an error message. Not sure why or how to fix it.

=IF((A6+B6)<=50,(A6*.11)*.2,IF(A6+B6)<=1000,((A6-50)*0.06+5.5,IF(A6+B6)>1000.01,(A6-1000)*0.02+62.5

A6 =1200
B6=17.04
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try

=IF(A6+B6<=50,A6*0.11*0.2,IF(A6+B6<=1000,(A6-50)*0.06+5.5,IF(A6+B6>1000.01,(A6-1000)*0.02+62.5)))
 
Upvote 0
You're enclosing each IF condition within a set of brackets. The following doesn't give you an error, although I'm not sure it returns the result you were expecting...

=IF(A6+B6<=50,(A6*0.11)*0.2,IF(A6+B6<=1000,(A6-50)*0.06+5.5,IF(A6+B6>1000.01,(A6-1000)*0.02+62.5)))
 
Upvote 0
thank you very much, that works. I was at my wits end trying to figure out what i was missing.

you guys are talented and quick.
 
Upvote 0

Forum statistics

Threads
1,215,035
Messages
6,122,791
Members
449,095
Latest member
m_smith_solihull

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top