Commision Plans (again)
Posted by Steve Booth on July 19, 2001 11:11 PM
After looker at the archive, it helped, but Im still stuck. I am having trouble with an array(?) statement and am looking to be pushed in the right direction
Its a commision problem
If a salesman sells 5000 or less, he gets zero commision, if he sells between 5001 and 15000 he gets 5% (ie he gets 5% of 10,000), if he sells between 15001 and 25000 he gets 20% of that 10,000 plus 5% of the first 10,000) if he sells above 25001, he gets 25% of anything above 25001, plus 5% of the first 10,000 and 20% of the next 10,000)
Hope that makes sense, the trick being he only gets the percentage on that range, not the whole amount, and for the first 5000 he gets nothing:
I worked that out to be a following formula:
If D7 >=5000,E7 =sum(D7*0%)
If D7 <=5000 and >=15000 then E7=sum(D7*5%)
If D7 <=15001 and >=25000 then E7 =sum((D7*20%)-750)
If D7 <=25001 then E7=sum((D7*25%)-2750)
however, its obviously wrong, but not obvious to me!!!!
any help would be greatly appreciated