C
CEB
We pay our commissions based on the cumulative number of units sold. For
example, units sold = X. If 0<X<500, the commission to be paid is 10% of
sale. If 500<X<1000, the commission to be paid is 15% of the sale. 20% is
paid on all sales once the number of units sold is greater than 1500.
If column "A" has units sold for a single transaction, column "B" has the
cumulative total, column "C" has the amount of the sale; I have used the
following if statement in column "D" (Commission Paid) to achieve part of my
issue:
=IF(AND(B>0,B<=500),C*10%,IF(AND(B>500,B<=1000),C*15%,C*20%))
When I get to 490 units in column "B" and the next transaction is for 27
units, I would like column "D" to calculate the commission on 10 units at
10% and the remaining units at the next rate (in this example 17 units at
15%)
All suggestions are greatly appreciated.
CB
example, units sold = X. If 0<X<500, the commission to be paid is 10% of
sale. If 500<X<1000, the commission to be paid is 15% of the sale. 20% is
paid on all sales once the number of units sold is greater than 1500.
If column "A" has units sold for a single transaction, column "B" has the
cumulative total, column "C" has the amount of the sale; I have used the
following if statement in column "D" (Commission Paid) to achieve part of my
issue:
=IF(AND(B>0,B<=500),C*10%,IF(AND(B>500,B<=1000),C*15%,C*20%))
When I get to 490 units in column "B" and the next transaction is for 27
units, I would like column "D" to calculate the commission on 10 units at
10% and the remaining units at the next rate (in this example 17 units at
15%)
All suggestions are greatly appreciated.
CB