Hello,
I could use some help with a sliding scale formula. I need a formula that does the following:
if a sales rep achieves 85% of sales, they will achieve 50% of their bonus. If a sales rep achieves 100% of sales, they achieve 100% of their bonus. If they achieve 115% of sales, they’ll get 200% of their bonus. I created an if statement that looks at the % achieved and returns the payout %, but I want this to be on a scale rather than a fixed % payout. So if the sales rep achieves 98% of sales, I want the prorated payout %. Not 50%, like my formula is giving me.
% Achieved Payout
85% 50%
100% 100%
115% 200%
This is the formula I made, but it doesn’t do it on a scale like I would like to do it. Any suggestions?
=IF(C$10>=Summary!$H$8,($C$5*$B$7)*Summary!$I$8,IF(C$10>=Summary!$H$6,($C$5*$B$7)*Summary!$I$6,IF(AND(C$10<=Summary!$H$5,C$10>=Summary!$H$4),($C$5*$B$7)*Summary!$I$5,0)))
I could use some help with a sliding scale formula. I need a formula that does the following:
if a sales rep achieves 85% of sales, they will achieve 50% of their bonus. If a sales rep achieves 100% of sales, they achieve 100% of their bonus. If they achieve 115% of sales, they’ll get 200% of their bonus. I created an if statement that looks at the % achieved and returns the payout %, but I want this to be on a scale rather than a fixed % payout. So if the sales rep achieves 98% of sales, I want the prorated payout %. Not 50%, like my formula is giving me.
% Achieved Payout
85% 50%
100% 100%
115% 200%
This is the formula I made, but it doesn’t do it on a scale like I would like to do it. Any suggestions?
=IF(C$10>=Summary!$H$8,($C$5*$B$7)*Summary!$I$8,IF(C$10>=Summary!$H$6,($C$5*$B$7)*Summary!$I$6,IF(AND(C$10<=Summary!$H$5,C$10>=Summary!$H$4),($C$5*$B$7)*Summary!$I$5,0)))