Hello All!
This is my first post. Although i am not an expert, i use excel on a daily basis and i ussually am able the solve or find on the web the solutions for the "challenges" i have, but this time i am really stucked. I think that what i want is possible, but not he way i am thinking it.
So let's see if the comunity can help me.
The Worksheet represents the sales results and comissions of several employes.
Each Employe might have an agreed condition of comission, with diferent % by range of sales.
For Exemple
Employe (A) has
0-150 = 35%
150-200 = 40%
> 200 = 45%
Employe (B) has
0-100 = 32%
100-200 = 35%
200-300 = 40%
>300 = 45%
This is just a very simplier example, to even know the sales of each there is a bunch of sheets and data that calculates the final % to be applied.
To Calculate the comissions, when they we're few, i just made get the % with some if's, something like that
"=IF(P13="EmployeA";IF(T13<65;0,375;IF(T13<85;0,4;IF(T13<105;0,425;IF(T13<125;0,45;IF(T13>125;0,5)))));IF(p13="employeb";(T13<50;0,375;IF(T13<60;0,4;IF(T13<70;0,425;IF(T13<90;0,45;IF(T13>90;0,5)"
But now there are too many and i am making some rude mistakes on the formules so my idea as to have a sheet where i put
A | B
Employe A | IF(T13<85;0,4;IF(T13<105;0,425;IF(T13<125;0,45;IF(T13>125;0,5))))
Employe B | IF(T13<85;0,44;IF(T13<105;0,43;IF(T13<125;0,49;IF(T13>125;0,59))))
(I do not insert the "=" so it does not try to calcule)
Then on the calculation **** i would make a Vlookup to get the percentage for the comission of that Employe on this table above and it calculates.
I can of course get the formula by Concatenate "=" and vlookup on the calculation sheet and i get the correct complete formula, but... it shows text, does not calcule the result.
Is there a way for me to setup this conditions ranges per employe and then get the % from the cell that has those ranges to be applied?
I hope i made clear
Bookmarks