If Statements

acclenticularis

New Member
Joined
Nov 27, 2005
Messages
4
I am having trouble with a statement. This is a tax problem. Taxes apply to a certain income threshhold and then no longer apply. I can do an IF statement to cut off the taxes, however, I cannot get it to cut off to the dollar. For example: Max taxes = $5.00

Date Income Taxes 25%(calculation of Income*tax rate)
1/1/05 $10.00 $2.50
2/1/05 $ 8.00 $2.00
3/1/05 $10.00 $0 Spits out because of the IF statement.
Total $28.00 $4.50

How can I get the amount under taxes to be $0.50 rather than $0?
The statement that I am using is:

IF(Total income*tax rate>=max tax,(0),income*tax rate)

Thanks
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Hi acclent...

Welcome to MrExcel Board!

Here is one way ...
Book1
ABCD
1DateIncomeTaxes 25%(calculation of Income*tax rate)
201/01/2005$10.00$2.50
302/01/2005$8.00$2.00
403/01/2005$10.00$0.50
5Total
Sheet2


formula in cell C2 is ... =MIN(B2*0.25,5-SUM($C$1:$C1))

this is then copied down.
 
Upvote 0
use MIN function

try this formula:

=min(max tax,income*tax rate)

min chooses the lesser of the two: either the max tax ($5.00) or the applied tax rate
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,044
Members
449,063
Latest member
ak94

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