A
Andy Copeland
Hi,
I am trying to use an if statement to calculate tax rates for withholding in
Excel 2000. It works for the first clause (110 to 404), but not the others
and I get an error when I try to add the last if statement for the single
classification. Why won't this work? Is there a better (one that works)
way of doing this? The spreadsheet has columns for name, marital status,
hours, wages, withholding, social security, medicare and paycheck.
Thanks,
Andy
=IF(C4="S",IF(AND(F4>110,F4<404),((F4-110)*0.1)),IF(C4="S",IF(AND(F4>404,F4<
1283),((F4-404)*0.15+29.4)),IF(C4="S",IF(AND(F4>1283,F4<2854),((F4-1283)*0.2
5+161.25),IF(C4="S",IF(AND(F4>2854,F4<6196),(F4-2854)*0.28+554),IF(C4="S",IF
(AND(F4>6195,F4<13383),((F4-6196)*0.33+1489.76))))))))
I am trying to use an if statement to calculate tax rates for withholding in
Excel 2000. It works for the first clause (110 to 404), but not the others
and I get an error when I try to add the last if statement for the single
classification. Why won't this work? Is there a better (one that works)
way of doing this? The spreadsheet has columns for name, marital status,
hours, wages, withholding, social security, medicare and paycheck.
Thanks,
Andy
=IF(C4="S",IF(AND(F4>110,F4<404),((F4-110)*0.1)),IF(C4="S",IF(AND(F4>404,F4<
1283),((F4-404)*0.15+29.4)),IF(C4="S",IF(AND(F4>1283,F4<2854),((F4-1283)*0.2
5+161.25),IF(C4="S",IF(AND(F4>2854,F4<6196),(F4-2854)*0.28+554),IF(C4="S",IF
(AND(F4>6195,F4<13383),((F4-6196)*0.33+1489.76))))))))