FUTA/SUTA/FICA Tax Calculations

SnrAcct

New Member
Joined
May 26, 2017
Messages
3
I am having difficulty in getting a complete formula to calculate payroll taxes. I have a spreadsheet with 12 tabs (each tab is a different month). The issue I am having is in the months where the wage base is reached (so need taxes to be calculated only on the difference in the wage and the base rate).

Example: FUTA Wage base rate $7000, tax 0.60% Jan wage $5000, Feb wage $5000, March wage $5000 etc...

So Jan FUTA tax is $30 (0.60% of $5000)
Feb FUTA tax is $12 (0.60% of $2000 (since $7000 max wage base rate is reached)
Mar FUTA tax is $0 (0.60% of $0, since $7000 wage base reached).

Same thing for SUTA @ 2.7% Wage base $7000, and FICA @ 7.65% Wage base $118,500.

I have been playing around with variations of IF and MIN functions, but am stumped. Any help would be appreciated.
 

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.
xample: FUTA Wage base rate $7000, tax 0.60% Jan wage $5000, Feb wage $5000, March wage $5000 etc...
So Jan FUTA tax is $30 (0.60% of $5000)
Feb FUTA tax is $12 (0.60% of $2000 (since $7000 max wage base rate is reached)
Mar FUTA tax is $0 (0.60% of $0, since $7000 wage base reached).
7000< < B8
col E
01/01/2016500050000row 10
01/02/201650001000012
01/03/20165000150000
01/04/20165000200000
01/05/20165000250000
01/06/20165000300000
01/07/20165000350000
01/08/20165000400000
01/09/20165000450000
01/10/20165000500000
01/11/20165000550000
01/12/20165000600000
use a cumultive salary helper column
formula giving 30
=IF(E9>$B$8,0,IF(E10>$B$8,(7000-E9)*0.006,E10*0.006))

<colgroup><col><col span="10"></colgroup><tbody>
</tbody>
 
Upvote 0
xample: FUTA Wage base rate $7000, tax 0.60% Jan wage $5000, Feb wage $5000, March wage $5000 etc...
So Jan FUTA tax is $30 (0.60% of $5000)
Feb FUTA tax is $12 (0.60% of $2000 (since $7000 max wage base rate is reached)
Mar FUTA tax is $0 (0.60% of $0, since $7000 wage base reached).
7000< < B8col E
01/01/20165000500030row 10
01/02/201650001000012
01/03/20165000150000
01/04/20165000200000
01/05/20165000250000
01/06/20165000300000
01/07/20165000350000
01/08/20165000400000
01/09/20165000450000
01/10/20165000500000
01/11/20165000550000
01/12/20165000600000
use a cumultive salary helper column
formula giving 30
=IF(E9>$B$8,0,IF(E10>$B$8,(7000-E9)*0.006,E10*0.006))
labelling col E caused an error sorry


<colgroup><col><col span="11"></colgroup><tbody>
</tbody>
 
Upvote 0
Thank you so much.

I am unclear as to what E9 is referencing, and also "formula giving 30". Please could you clarify.
 
Upvote 0
E9 is the empty cell above 5000

the formula gives the answer 30
next cell down it gives 12
 
Upvote 0
E9 is the empty cell above 5000

the formula gives the answer 30
next cell down it gives 12
______________________________________________________________________________
Thanks again, but unfortunately this formula gives me a cumulative total of the FUTA tax (so Feb shows an amount of $42, which is the $30 from Jan + $12 from Feb.)

I need it just to show each month FUTA on it's own.

Is there anyway I can upload an example of my spreadsheet for you to see what I mean?
 
Upvote 0

Excel 2010
CDE
3FUTA
41-Jan-175,000.0030
51-Feb-175,000.0012
61-Mar-175,000.000
5d
Cell Formulas
RangeFormula
E4=MIN(0.006*SUM($D$4:D4),7000*0.006)-N(SUM($E$3:E3))
E5=MIN(0.006*SUM($D$4:D5),7000*0.006)-N(SUM($E$3:E4))
E6=MIN(0.006*SUM($D$4:D6),7000*0.006)-N(SUM($E$3:E5))
 
Upvote 0

Excel 2010
BCDEFG
1FUCA7,000.000.60%42.00
2SUTA7,000.002.70%189.00
3FICA118,500.007.65%9,065.25
4
5WageFUTASUTAFICA
61-Jan-175,000.0030.00135.00382.50
71-Feb-175,000.0012.0054.00382.50
81-Mar-175,000.000.000.00382.50
5d
Cell Formulas
RangeFormula
G5=B3
G6=MIN($D$3*SUM($D$6:D6),rFICA)-SUM($G$5:G5)
E6=MIN($D$1*SUM($D$6:D6),rFUCA)-SUM($E$5:E5)
F6=MIN($D$2*SUM($D$6:D6),rSUTA)-SUM($F$5:F5)
Named Ranges
NameRefers ToCells
rFICA='5d'!$E$3
rFUCA='5d'!$E$1
rSUTA='5d'!$E$2
 
Upvote 0
I copied my spreadsheet and it gave 30 and 12

you must have entered the formula wrongly, or have data in wrong locations - I was showing you one way to achieve it....
 
Upvote 0
Excel 2010
BCDEFG
1FUCA7,000.000.60%42.00
2SUTA7,000.002.70%189.00
3FICA118,500.007.65%9,065.25
4
5WageFUTASUTAFICA
61-Jan-175,000.0030.00135.00382.50
71-Feb-175,000.0012.0054.00382.50
81-Mar-175,000.000.000.00382.50

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
5d

Worksheet Formulas
CellFormula
G5=B3
E6=MIN($D$1*SUM($D$6:D6),rFUCA)-SUM($E$5:E5)
F6=MIN($D$2*SUM($D$6:D6),rSUTA)-SUM($F$5:F5)
G6=MIN($D$3*SUM($D$6:D6),rFICA)-SUM($G$5:G5)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Workbook Defined Names
NameRefers To
rFICA='5d'!$E$3
rFUCA='5d'!$E$1
rSUTA='5d'!$E$2

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

This worked beautifully! Thank you!
 
Upvote 0

Forum statistics

Threads
1,215,339
Messages
6,124,365
Members
449,155
Latest member
ravioli44

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