calculating social security formula

G

Guest

I need help with a formula for calcuating social security taxes. The
calculation is based upon 6.2 of the annual salary, and the calculation stop
at a 90,000.00.
so if the salary is 100K, you do not calculate past the first 90K


Thanks much
 
J

John Vinson

I need help with a formula for calcuating social security taxes. The
calculation is based upon 6.2 of the annual salary, and the calculation stop
at a 90,000.00.
so if the salary is 100K, you do not calculate past the first 90K


Thanks much

0.062 * CCur(IIF([Salary] > 90000, 90000, [Salary]))

You may also want to use Round() to round the result to the nearest
penny (or dollar as appropriate).

John W. Vinson[MVP]
 
G

Guest

Perfect - thank you very much

John Vinson said:
I need help with a formula for calcuating social security taxes. The
calculation is based upon 6.2 of the annual salary, and the calculation stop
at a 90,000.00.
so if the salary is 100K, you do not calculate past the first 90K


Thanks much

0.062 * CCur(IIF([Salary] > 90000, 90000, [Salary]))

You may also want to use Round() to round the result to the nearest
penny (or dollar as appropriate).

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top