I am working on a commission sheet for my team.
Criteria for this commission is if Gross Margin is greater than 25% and over all HCP count is greater than 8 the Tier commission is 20%. At the same time, if the same gross margin is expected but more than 25 HCPs the tier commission should be 25% for that line.
I have included a photo below to help.
Hello,
try:
Commission = SWITCH(
TRUE(),
[Gross Margin] > 0.25 && [HCP Count] > 25, 0.25,
[Gross Margin] > 0.25 && [HCP Count] > 8, 0.2,
BLANK()
)
If this solved your problem, please mark it as the solution, so others can find it 🙂
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
140 | |
74 | |
36 | |
27 | |
22 |
User | Count |
---|---|
145 | |
85 | |
39 | |
36 | |
24 |