Excel Formula Help??

Jainam_Excel

New Member
Joined
Oct 3, 2016
Messages
3
:confused:So I am working on this report where I have to calculate the taxes based on the Gross Profit.

I had 4 different Gross profit for 4 different Quarters. I was able to do 3 of them but not the 4th. The reason being that is because it wanted the specific thing:

Taxes are 20 % of the first $12,000.00 of Gross Profit plus 25 % of any Gross Profit in excess of $12,000.00. For example, the tax on $8,000.00 would be $1,600.00, while the tax on $15,000.00 would be $2,4000.00 + $750.00 = $3,150.00.

I have to do that and create a Formula but I am having difficulty trying to find the right formula.

So Far I have come up with different Formulas but Doesn't Work. If you can help me find the formula it would be really appreciated.

This is the Total gross profit and I have to calculate the Taxes Based on that. Please help me figure it out.

Gross Profit: $14,190.84

What I have tried so far: =If (And(E26>=12000),E26-12000,0)

Then From here I just don't know what to do. Like Please help me out as soon as possible.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi Jainam_Excel,

Welcome to MrExcel!!

Try this:

=IF(E26>=12000,12000*0.2+(E26-12000)*0.25,E26*0.2)

Regards,

Robert
 
Upvote 0
Trebor's formula should work fine, but here's another option:

=MIN(E26,12000)*20%+MAX(E26-12000,0)*25%
 
Upvote 0
thank you so much...........

You're welcome. If you can keep in mind to provide a link to any other site where you've posted the same question it would be greatly appreciated.

Robert
 
Upvote 0

Forum statistics

Threads
1,215,417
Messages
6,124,791
Members
449,188
Latest member
Hoffk036

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