LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,059
Default how do I stop payroll tax deductions once FUTA limit is met?

"cm" wrote:
The total FUTA rate is 6.2%, however you rarely end up payiing
that on the annual FUTA return. The correct deposit rate is 0.8%.


This is a response to a month-old thread. I resolved OP's problem in
private email. As it turns out, the OP was trying to reverse-engineer the
numerical examples in a slide that had been handed out at a payroll
workshop. They did indeed simply use the 0.8% FUTA tax rate.

As for CM's comment, the devil is in the details -- which is really what I
intended to convey in my comment which CM is responding to.

The OP was not clear about the context. I think my response is appropriate
if the OP was talking about accrual accounting. Arguably, CM's comment
seems correct if the OP was talking about quarterly FUTA deposits.

But actually, I think CM's comment is overly simplistic even for quarterly
deposits.

Both IRS Pub 15 and, surprisingly, the instructions for Form 940 (__annual__
FUTA return) note that the quarterly FUTA deposit tax rate is higher when
applied to employee wages that are exempt from state unemployment tax. See
the example in the Form 940 instructions.

Nonetheless, I would uncategorically agree with CM's subjective assessment
that it is "rare" for the applicable FUTA tax rate not to be 0.8%.

(Hint: Look up the word "categorical". It might surprise you. ;-)


----- original message -----

"cm" wrote in message
...
Joe,

The total FUTA rate is 6.2%, however you rarely end up payiing that on the
annual FUTA return. The correct deposit rate is 0.8%. (you realize of
course
that you do not deduct this from employee's paychecks - it is an
employer-paid tax)

cm


"JoeU2004" wrote:

Material typo....

"JoeU2004" wrote:
(FYI, there is no way that I could help you compute the tax percentage
[...]. Obviously I do have the latter information.)


That is, I do __not__ have the necessary information. Oh that elusive
word
"not". Aarrgghh!


----- original message -----

"JoeU2004" wrote in message
...
"B-Cut" wrote:
Thank Joe, I appreciate your help. Maybe we are talking about 2
different
problems. I think you are showing me how to calculate the FUTA tax
percentage. That part I understand, what I am trying to do is once the
7000
limit occurs, is stop the calucations, but more importantly, is have
the
cap
stop at exactly 7000.

Actually, I intended to show you how to do the later. Perhaps you
should
prototype the worksheet as I described in my paradigm. It's not that
difficult. Just put 3000 in each of A4:A7, and fill in the formulas
that
I described. I think you would see that the formulas compute the tax,
not
the tax percentage.

(FYI, there is no way that I could help you compute the tax percentage,
if
by that you mean the FUTA tax rate. It is either 0.8% or 6.2% or
something in between based on the "credit against your FUTA tax for
amounts that you paid into state unemployment funds". Obviously I do
have
the latter information.)


I know it is difficult to help someone without seeing the
entire spread sheet. It is up to you, but I have no problem
sending it to you.

If you still feel that is necessary, I'm okay with that. I'll send you
email.


----- original message -----

"B-Cut" wrote in message
...
Thank Joe, I appreciate your help. Maybe we are talking about 2
different
problems. I think you are showing me how to calculate the FUTA tax
percentage. That part I understand, what I am trying to do is once the
7000
limit occurs, is stop the calucations, but more importantly, is have
the
cap
stop at exactly 7000. I know it is difficult to help someone without
seeing
the entire spread sheet. It is up to you, but I have no problem
sending
it to
you. It only has sample data in it. So if you are willing I could
email
it to
you, but that is up to you. Just let me know. I know you would not
want
your email address listed on this site, but if you want to send it to
me
at
the following addess, , I could then send it to
you.
This is the last portion of the spread sheet I am trying to perfect,
and
it
is driving me nuts. I am using a FED/EDD (California) print form to
base
mine
on. I have basically replicated it cell by cell, and all my sample
data
adds
up exactly as theirs, with the expection of figuring out how to cap it
at
7000. THANKS - RICK

"JoeU2004" wrote:

"B-Cut" wrote:
But my forumula does not work, because he went over 7000,
but it didn't know how to add just the 1000 difference to cap
the FUTA at 7000.

You could compute the limit based on the salary cap, $7000. I will
show
that second. But I prefer to compute the limit based on the FUTA tax
cap.
I will show that first.

By the way, to be sure your formula works, I would suggest that you
change
your example to have quarterly wages of $3000, not $2000. Thus, the
FUTA
salary cap is reached in the middle of period 3, and the FUTA tax for
period
4 should be zero.

Suppose B1 is your FUTA tax rate -- typically 0.8%, but as much as
6.2%
in
2009. And suppose C2 is the salary cap (7000), and B2 is the FUTA
tax
cap,
namely:

=round(C2*B1,2)

Suppose that the periodic wage is in column A starting with A4, and
the
FUTA
tax is in column B starting with B4. (Note: The following assumes
that
B3
is text or empty.) Then the periodic FUTA tax in B4 (and copied down
the
column) is:

=ROUND(MIN(A4*$B$1, $B$2 - SUM($B$3:B3)), 2)

In other words, the FUTA tax for the current period is the lesser of
the
gross wages times the FUTA tax rate and the FUTA tax cap less the sum
of
the
FUTA tax paid in previous periods.

Be careful to use the absolute and relative references exactly as
shown.
That is key to permitting the formula to be copied down.

I would use the same paradigm for capping other taxes, e.g. Soc Sec.


If you wanted to base the limit on the salary cap instead, you might
consider the following paradigm:

=ROUND($B$1 * MIN($C$2, SUM($A$4:A4)) - SUM($B$3:B3), 2)


----- original message -----

"B-Cut" wrote in message
...
what is the formula required to stop employee and employer paid
taxes
once
a
tax limit criteria has been met? Ex. once 7000.00 in gross wages
has
been
met, you no longer have to take out FUTA.

It is easy to figure out the formula above and well below 7000.00,
the
problem is that one pay period when they finally meet the 7000.00,
but
it
does not know what to do with the excess amount. Example. pay
period
1 -
employee gross wages are 2000. Tax formula works fine. Pay
perios
2,
another 2000 in wages, now YTD total is 4000. Still fine. Pay
period
3,
another 2000, everything still fine because YTD is now 6000. But
now
on
pay
period 4 - another 2000, but now it jumps to 8000 YTD. But my
forumula
does
not work, because he went over 7000, but it didn't know how to add
just
the
1000 difference to cap the FUTA at 7000.

anyone out there that knows what the formula would be, please help.






 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula in a cell to calc FUTA tax 12by8 Excel Worksheet Functions 10 April 24th 23 11:43 AM
Payroll tax deductions jgoblish Excel Discussion (Misc queries) 4 March 2nd 08 07:34 PM
Adding payroll stubs payroll calculator Sable New Users to Excel 2 August 5th 06 05:37 PM
need spreadsheet for the calculation of FUTA & SUTA payroll taxes [email protected] Excel Discussion (Misc queries) 0 December 22nd 05 08:53 PM
How do I setup a formula for payroll deductions in excel Skeeter Excel Worksheet Functions 1 February 6th 05 09:51 PM


All times are GMT +1. The time now is 11:23 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"