I have everything working right so far - Variable reps with variable Quotas etc...
Now I need to take their Quota achievement and evaluate it against ranges to determine the payout.
So
In Excel I would use:the range G4:L4 have the gates to attain and E4 would be the raw numberCode:=CHOOSE(MATCH(E4,G4:L4,1),0,0.6,0.75,0.85,1,1.25)
I could do it with a nested IIf statement but it would get too involved.