Calculation Tax bands with one formula?

fcfcfc

New Member
Joined
Aug 5, 2011
Messages
3
Hi,
I am trying to create a formula to calculate tax due for salaries.
I need a formula to look at a salary range and then ask:
IF the salary is between £0 to £35,000 tax at 20%, anything above this £35,000 and between £150,000 is taxed at 40% and anything above £150,000 is taxed at 50%.
E.g. if your annual salary was £250,000 THEN:
The first £35,000 is taxed at 20%
The next range from (35k to 150k= £115,000) is taxed at 40%
The final range of anything above £150k(i.e. £100,000) is taxed at 50%.
So:
First 35K tax is £7000 (@20%)
Next £115k tax is £46,000 (@40%)
Final anything above 150k i.e. £100k tax is £50k (@50%)
Total tax payable = £103,000


thanks

fcfcfc:confused:
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Have a look at this:
Excel Workbook
ABCDE
1SalaryTax PayableBracketsRates
2250,000103,0000%
3020%
435,00040%
5150,00050%
69,999,999
Sheet
 
Upvote 0
or
Code:
=IF((D6-150000)>=0,((D6-150000)*50)/100,0)+IF(AND((D6-35000)>1, (D6-35000)<=115000),((D6-35000)*40)/100,IF((D6-35000)>115000,(115000*40)/100))+IF(D6>=35000,(35000*20)/100,(D6*20)/100)
 
Upvote 0
One more.....

=A1*50%-MIN(A1,150000)*(50%-40%)-MIN(A1,35000)*(40%-20%)

or if you want it short...

=A1/2-MIN(A1,150000)/10-MIN(A1,35000)/5
 
Upvote 0
Thanks to all formulae, I tried them all and they either did not calculate correctly of gave a #NA error message.

BUT thanks to barry houdini ...YOU GET THE CIGAR! perfect

Thanks to all for the assistance


regards

fcfcfc:)
 
Upvote 0

Forum statistics

Threads
1,224,507
Messages
6,179,172
Members
452,893
Latest member
denay

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