#1   Report Post  
Posted to microsoft.public.excel.misc
Tia Tia is offline
external usenet poster
 
Posts: 64
Default Formula Help


I need help with a formula for the following:

FUTA is calculated on YTD income up to $7000.00. Once an employee's income
is greater than $7000.00, they owe $0 FUTA. My formula works until an
employee makes over $7000.00. I think the problem is that they owe FUTA on
all income up to $7000.00 so if for example I have the following employee:
YTD Payroll Payroll for Period FUTA
01/01/08 6450.00 6450.00 51.60 = (6450.00)
0.008
01/15/08 12000.00 5550.00 4.40 =
(7000-6450)0.008
02/01/08 18000.00 6000.00 0.00 (0) 0.008


I've pasted the formula that I've been trying to use.
G4 is the YTD Payroll Total
F4 is the Payroll amount


=IF(G4<7000,F4,IF(G4-F47000,0,(F4(F4-7000))))*0.008


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 171
Default Formula Help

The amount on which you'll have paid FUTA after this check is min(7000,YTD);
the amount prior to this check is min(7000,YTD-current). So the FUTA for
this period is =.008*(min(7000,g4)-min(7000,g4-f4))

"Tia" wrote:


I need help with a formula for the following:

FUTA is calculated on YTD income up to $7000.00. Once an employee's income
is greater than $7000.00, they owe $0 FUTA. My formula works until an
employee makes over $7000.00. I think the problem is that they owe FUTA on
all income up to $7000.00 so if for example I have the following employee:
YTD Payroll Payroll for Period FUTA
01/01/08 6450.00 6450.00 51.60 = (6450.00)
0.008
01/15/08 12000.00 5550.00 4.40 =
(7000-6450)0.008
02/01/08 18000.00 6000.00 0.00 (0) 0.008


I've pasted the formula that I've been trying to use.
G4 is the YTD Payroll Total
F4 is the Payroll amount


=IF(G4<7000,F4,IF(G4-F47000,0,(F4(F4-7000))))*0.008


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,059
Default Formula Help

On Jan 31, 3:39*pm, Tia wrote:
FUTA is calculated on YTD income up to $7000.00. *Once an
employee's income is greater than $7000.00, they owe $0 FUTA.


Minor note: FUTA is paid by the employer, not the employee; so "they"
do not owe anything. I'm sure what you mean is: the FUTA attributed
to the employee's wages.

so if for example I have the following employee:
* * * * * * * *YTD Payroll * * *Payroll for Period * * * * FUTA
01/01/08 * * * 6450.00 * * * * * * 6450.00 * * * * * * * 51.60 = (6450.00)
0.008
01/15/08 * * *12000.00 * * * * * *5550.00 * * * * * * * *4.40 = *
(7000-6450)0.008
02/01/08 * * *18000.00 * * * * * *6000.00 * * * * * * * *0.00 *(0) 0.008


To avoid rounding errors, I think FUTA should always be computed based
on the YTD wages (subject to FUTA), then subtract the FUTA previously
reported. So assuming the first YTD Payroll figure is in B2, the
corresponding FUTA formula in D2 should be:

=round(min(7000,B2)*0.8%,2) - sum($D$1:D1)

As you drag this down column D, you will see that $D$1:D1 changes to $D
$1:D2, then $D$1:D3 appropriately.
Reply
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



All times are GMT +1. The time now is 06:41 PM.

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

About Us

"It's about Microsoft Excel"