Aug 02 2023 03:31 AM
Hello All,
I have many conditions to calculate the following commission From 50,001 to 100,000 = 10% From 100,001 to = 20%
Example:
1) Net of commission 55,000 = 5000*10%=500
2) Net of commission 105,000 = 50,000*10%= 5000
5,000*20%= 1000
total commision = 6000
What is the approciate formula ?
Aug 02 2023 03:38 AM
Aug 02 2023 03:47 AM
I'd use a small lookup range.
Column H contains the difference between the commission of a tier and that of the previous tier.
The formula in B2 is
=SUMPRODUCT((A2>$F$2:$F$5)*(A2-$F$2:$F$5),$H$2:$H$5)
This can be filled down.