In the Formula box, enter
the following: (To create a new line in the formula, press CTRL+J.)
E=0.00; "E
is Exemption Amount per Local Allowance (for EE and Spouse in Indiana)"
D=0.00; "D
is the Allowance Amount per Dependent (applies for Indiana only)"
M=0.00; "Maximum
Tax (0 if no maximum)"
PERCENT=1.20;
A=PRORATE((ANNUAL(ADJUSTED_GROSS)-(E*EMP_LOCAL_ALLOWANCES)-(D*EMP_LOCAL_NUMBER))*PERCENT%);
ANSWER=-IF(M=0,A,IF((ABS(YTD(Local)-Local)+A)>M,M-ABS(YTD(Local)-Local),A))
This formula first looks at the local percentage of 1.2% and prorates
it based on the calculated annual adjusted gross. If your local tax has
an exemption amount, enter the amount in place of the zero in the equation
E=0. When you are entering employees, be sure to enter the correct number
in the Local Allowances box in the Maintain Employees/Sales Reps window.
If you have a maximum tax, enter the annual maximum in place of the zero
in the equation M=0.
The sentence within quotes above the actual formula is meant as
a comment or reminder of how the calculation is set up. Adding the comment
is optional.
In some cases, your area may also have a set amount that is prorated
over the course of the year. A good example of this is the Pennsylvania
Occupational Privilege Tax. In this case, add the following line to the
end of the above formula: (Remember to put a semicolon (;) at the end
of the last line before creating the new line.)
ANSWER=ANSWER-PRORATE
(0)
In this formula the tax is a fixed amount per year. Replace zero(0)
with an amount (for example, (150.00). The PRORATE expression divides
the amount of $150.00 by the number of pay periods in a calendar (payroll)
year.
If we hadn't already set up the payroll field, we would have to click on the link at the bottom right, Add this formula to Employee Defaults, before we could save the formula.