computing taxes

websterja1983

New Member
Joined
Sep 25, 2007
Messages
39
I am a rock when it comes to this stuff. I need to have a cell compute monthly federal taxes based on the income tables. I have no idea how to set up the tables or use the formulas. I know this is asking a lot but any help is always appreciated. Thanks.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Assuming a progressive/variable tax rate, have a look here...

Hope this helps!
 
Upvote 0
almost......there are still a few other factors that need to be included. I need to compare to two different tables (single and married), as well as the standard deductions for exemptions. Also, in the example, A1 I'm guessing is the yearly wages. It worked when my A1 was (H8*12) (H8 being monthly wages). But I also need to add and subtract some other numbers. I tried to add H14 (also taxable) and subtract H32 (reduces taxable income) so it looked like this:

((H8+H14-H32)*12) - it gives the same answer, but using a calculator I get a totally different result.

Sorry to make this a hassle.
 
Upvote 0
Can you provide the tax table for both 'single' and 'married', along with a few examples?
 
Upvote 0
SINGLE
OVER/ UNDER/ WITHHELD/ OF EXCESS OF/
$0.00 $2650.00 $0.00 $--------
$2650.00 $10120.00 $0.00 + 10% $2650.00
$10120.00 $33520.00 $747.00 + 15% $10120.00
$33520.00 $77075.00 $4257.00 + 25% $33520.00
$77075.00 $162800.00 $15145.75 + 28% $77075.00
$162800.00 $351650.00 $39148.75 + 33% $162800.00
$351650.00 AND UP $101469.25 + 35% $351650.00

MARRIED
OVER/ UNDER/ WITHHELD/ OF EXCESS OF/
$0.00 $8000.00 $0.00 $--------
$8000.00 $23350.00 $0.00 + 10% $8000.00
$23350.00 $70700.00 $1535.00 + 15% $23350.00
$70700.00 $133800.00 $8637.50 + 25% $70700.00
$133800.00 $203150.00 $24412.50 + 28% $133800.00
$203150.00 $357000.00 $43830.50 + 33% $203150.00
$357000.00 AND UP $94601.00 + 35% $357000.00

STANDARD DEDUCTIONS ARE $3400.00 PER DEDUCTION

Example:
wages are $30000.00/yr, claiming S-03
Computation should be as follows:
$30000.00-$10200.00=$19800.00
$19800.00-$10120.00=$9680.00
$9680.00*15%=$1452.00
$1452.00+$747.00=$2199.00 for yearly taxes

Example:
wages are $60000.00/yr, claiming M-05
Computation should be as follows:
$60000.00-$17000.00=$43000.00
$43000.00-$23350.00=$19650.00
$19650.00*15%=$2947.50
$2947.50+$1535.00=$4482.50 for yearly taxes

Hope this clarifies things, and again thanks for your help.
 
Upvote 0
Let F1:I8 contain the following...

Code:
Single		Married	
0	0	0	0
2650	0.1	8000	0.1
10120	0.05	23350	0.05
33520	0.1	70700	0.1
77075	0.03	133800	0.03
162800	0.05	203150	0.05
351650	0.02	357000	0.02

Let A2 contain either Single or Married, indicating the table to use.

Let B2 contain the taxable income, after taking into account any additions and/or deductions.

Then try the following formula...

Code:
=SUMPRODUCT(--(B2>CHOOSE(MATCH(A2,{"Single","Married"},0),$F$2:$F$8,$H$2:$H$8)),B2-CHOOSE(MATCH(A2,{"Single","Married"},0),$F$2:$F$8,$H$2:$H$8),CHOOSE(MATCH(A2,{"Single","Married"},0),$G$2:$G$8,$I$2:$I$8))

Hope this helps!
 
Upvote 0
hmmmm, not yet. In example 1 the total is $2199.00, but the formula gives me $396.00. I retyped the formula a few times just to be sure, but it gives me the same answer every time. For the B2 line (taxable income) I have ((H8-H32)*12)-(D25*3400)). H8 being monthly pay minus H32 (reduces taxable income) times 12 for yearly taxes. Then minus D25 (exemptions) times $3400.00.
 
Upvote 0
With regards to the first example, this is my understanding...

Wages ---> $30,000

Deductions ---> $10,200

Taxable Income (the amount in B2) ---> $19,800

Taxes Payable ---> $2,199

Am I missing something?
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,297
Members
452,903
Latest member
Knuddeluff

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