Simple multi-conditional formula help

Regan180

New Member
Joined
Sep 14, 2008
Messages
2
Hi all,

I'm trying to create a formula which is essentially a calculator of sorts, but i'm stuck on how to do it. I want the formula to acknowledge the following conditions;

If [cell value]<38,000, then show "0"
If [cell value] is between 38,000 and 60,000, then "[cell value]-38,000*0.33"
If [Cell Value] >60,000, then "22,000*0.33"

I couldn't work out how to do this with an IF statement. Any help would be much appreciated.

-Regan
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
How about
=IF(A1<38000,0,IF(A1<60000,A1-38000*.33,19800))
or did you want text returned
=IF(A1<38000,"0",IF(A1<60000,A1&"-38,000*0.33","22,000*0.33"))
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,591
Members
449,174
Latest member
chandan4057

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