Tax Brackets

jl3287

New Member
Joined
Oct 1, 2011
Messages
8
I've been trying to create a sheet that would give me the tax breakdown of an income. There are quite a few variables...

Hypothetically speaking,

-You make $35000 Gross Income

-You fall under 5 different brackets,
0-10000, 10001-15000, 15001-25000, 25001-50000, 50001-100000

-The percentage for each increases by 1 starting from 2%,
(2%, 3%, 4%, 5%, 6%)

And, since you make 35000,
you count
10000 (at 2% = 200) for being in the 0-10000 bracket
5000 (3% = 150) for being in 10001-15000
10000 (4% = 400) for being in 15001-25000 &
10000 (5% = 500) for being in 25001-50000
0 (6% = 0) for being 50001-100000

Equaling: 1250

So, I need a formula that can do that.

Can figure out your income is to high for a bracket, in the middle of a bracket, to low for a bracket, and if it fits somewhere in the middle of a bracket can count only the amount it's made in that bracket...




Any ideas? And, thank you in advance for any answers!
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Give this a try. I am sure there could be better but see if it is a starting point for you!

Gross Income.xlsm
ABCD
760,000PercentRate
810,0002%200
95,0003%150
1010,0004%400
1110,0005%500
12-6%600
13Total1,850
Sheet1
 
Upvote 0
Ended up doing something like this

=IF(D18<6001,0, IF(AND(D18>6000,D18<=30001),(D18-6000)*0.15, IF(AND(D18>30001,D18<75001),3600+(D18-30000)*0.3, IF(AND(D18>=75001,D18<150001),17100+(D18-75000)*0.4, IF(D18>=150001,47100+(D18-150000)*0.45)))))
 
Upvote 0
Great. I was just going over my formulas and I missed one complete step.
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,710
Members
452,939
Latest member
WCrawford

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