james.kilgore
New Member
- Joined
- May 12, 2011
- Messages
- 1
I'm currently using the following function to calculate the below:
=IF(T4>=S4,20+INT((T4/S4-1)*100)*5,0)
Salesmen will earn 20 points when they EAD 100% of their PJ/CCT/SOWT target. Salesmen will then earn an additional 5 points for every PJ/CCT/SOWT to EAD above 100% of their target. Flights will earn 0 points if they fail to meet 100% of PJ/CCT/SOWT target.
However, it is calculating the percentage over 100%. I need it to give 20 points for reaching the target and then give 5 points for each one above the set target.
For instance, a salesman has a goal of 10 and gets 12. They would get 20 points for reaching the target and then receive 10 more points for the extra two for a total of 30 points.
DESCRIPTION OF PROBLEM: it is calculating the points based on the percentage. What I need it to do is evaluate column S compare to column R. If S is equal to the target then award 20 points. For every integer over the target award 5 additional points.
Thanks!
=IF(T4>=S4,20+INT((T4/S4-1)*100)*5,0)
Salesmen will earn 20 points when they EAD 100% of their PJ/CCT/SOWT target. Salesmen will then earn an additional 5 points for every PJ/CCT/SOWT to EAD above 100% of their target. Flights will earn 0 points if they fail to meet 100% of PJ/CCT/SOWT target.
However, it is calculating the percentage over 100%. I need it to give 20 points for reaching the target and then give 5 points for each one above the set target.
For instance, a salesman has a goal of 10 and gets 12. They would get 20 points for reaching the target and then receive 10 more points for the extra two for a total of 30 points.
DESCRIPTION OF PROBLEM: it is calculating the points based on the percentage. What I need it to do is evaluate column S compare to column R. If S is equal to the target then award 20 points. For every integer over the target award 5 additional points.
Thanks!