PC Review


Reply
Thread Tools Rate Thread

commision on multiple invoices with sliding scale.

 
 
scottymong
Guest
Posts: n/a
 
      9th Aug 2007
We have a sales rep and they enter all their invoices at the end of
the month. We want pay out commisions based on each invoice value. So
we want to sum up invoices in a certain range and pay out x percetage
based on the sum. I can get the first 5% commission I just cant get
the 3% and 2% commission formula to work.

Here is what I could come up with so far:

Invoice value
Invoice 1 2000
invoice 2 95001
Invoice 3 1256
invoice 4 62000

Commission
5% for under 50,000= 162.8 =SUMIF($B$3:$B$6,"<=50000")*(0.05)

3% for >50,0001----<=90,000=? =SUMIF($B$3:$B$6,">50000 but <=90000)*.
03

2% for >90,001=?

I can work it out on my abucus, but cant get it to work in Excel
Thanks for any help on this

 
Reply With Quote
 
 
 
 
JE McGimpsey
Guest
Posts: n/a
 
      9th Aug 2007
Do you really pay a significantly lower total commission on $90,001
(i.e., 90001 * 2% = $1,800.02) than you do on $50,000 (i.e., 50000 * 5%
= $2,500)???

If so, then (aside from the fact that I'm glad I don't work for your
company) one way:

J1: =SUMIF($B$3:$B$6,"<=50000")*0.05
J2: =(SUMIF($B$3:$B$6,"<=90000") - SUMIF($B$3:$B$6,"<=50000"))*0.03
J3: =SUMIF($B$3:$B$6,">90000")*0.02

J2 can also be calculated as

=SUMPRODUCT(--($B$3:$B$6>50000),--($B$3:$B$6<=90000),$B$3:$B$6)*0.03

If your scale is actually progressive, e.g., with $50,001 getting 5% on
the first $50K, and 3% on the amount above $50K, see

http://www.mcgimpsey.com/excel/variablerate.html


In article <(E-Mail Removed)>,
scottymong <(E-Mail Removed)> wrote:

> We have a sales rep and they enter all their invoices at the end of
> the month. We want pay out commisions based on each invoice value. So
> we want to sum up invoices in a certain range and pay out x percetage
> based on the sum. I can get the first 5% commission I just cant get
> the 3% and 2% commission formula to work.
>
> Here is what I could come up with so far:
>
> Invoice value
> Invoice 1 2000
> invoice 2 95001
> Invoice 3 1256
> invoice 4 62000
>
> Commission
> 5% for under 50,000= 162.8 =SUMIF($B$3:$B$6,"<=50000")*(0.05)
>
> 3% for >50,0001----<=90,000=? =SUMIF($B$3:$B$6,">50000 but <=90000)*.
> 03
>
> 2% for >90,001=?
>
> I can work it out on my abucus, but cant get it to work in Excel
> Thanks for any help on this

 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Sliding scale Question =?Utf-8?B?U2FuZHk=?= Microsoft Excel Worksheet Functions 1 14th Apr 2007 12:28 PM
Division on a sliding scale ultra_xcyter Microsoft Excel Programming 2 26th May 2004 06:45 PM
Division on a sliding scale ultra_xcyter Microsoft Excel Worksheet Functions 3 26th May 2004 06:26 PM
sliding scale chart mon Microsoft Excel Charting 2 4th Jan 2004 04:16 PM
Re: Sliding Scale Calculation Brigham Siton Microsoft Access 1 18th Jul 2003 05:12 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:42 PM.