calculate years worked by 3% * salary in excel

L

laurentium3

If the number of years employed is greater than or equal to 1, then the
contribution is equal to the contribution percentage (3%) * $50,000;
otherwise, the contribution is $0.
 
J

joeu2004

laurentium3 said:
If the number of years employed is greater than or equal
to 1, then the contribution is equal to the contribution
percentage (3%) * $50,000; otherwise, the contribution is $0.

Do you really mean "3% * salary up to 3% * $50,000"?

That seems more consistent with the subject of your posting.
If that is what you mean, then building upon Gary Brown's reply:

=IF(YEARFRAC(hireDate, criterionDate) < 1, 0, 3%*MIN(salary, 50000))

You can use TODAY() in place of criterionDate. But that usually
does fit the HR requirements.
 

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

Similar Threads


Top