PDA

View Full Version : Suta


bunny91
05-05-2004, 12:27 PM
For some reason our SUTA is not calculating properly. The decimal is over to the left two places. Here is our formula:
LIMIT = 8000.;
PERCENT = 1.5 % ;
TAXABLE_GROSS = YTD_LIMIT (ADJUSTED_GROSS, LIMIT);
ANSWER = -TAXABLE_GROSS * PERCENT%

jcnixon
05-05-2004, 01:08 PM
Here is what my formula looks like:

LIMIT = 7000.;
PERCENT = 2.7;
TAXABLE_GROSS = YTD_LIMIT (ADJUSTED_GROSS, LIMIT);
ANSWER = -TAXABLE_GROSS * PERCENT%


I notice the difference between yours and mine seems to be on the second line, yours has a % sign after the 1.5 where mine has none after the 2.7

Don't know if that makes any difference or not in your calculation result.

Jan

bunny91
05-05-2004, 02:23 PM
Yes that fixed it. Thanks!