Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
RC RC is offline
external usenet poster
 
Posts: 39
Default calculating commissions

I am looking for a formula that allows me to calculate payment to sales
people for comissions but with a draw.

Example

Sales person makes 1000 a month
Sales are 100,000 a month
He gets 1% of sales as commissions = 1000
So in this example, he does not get paid any commissions.

If he sold 200,000 he would get 1000 paid in commissiio.

I have it structured where the monthly draw is in one row and below I have
the comissions, but I want to show the ammount of commissions they get paid,
if they have to get paid.

Hope its clear. Its kind of hard explaining it in words.

THanks

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default calculating commissions

You probably want the following to calculate the pay (assumes sales in a1):
=max(1000,a1*1%)

Regards,
Fred

"RC" wrote in message
...
I am looking for a formula that allows me to calculate payment to sales
people for comissions but with a draw.

Example

Sales person makes 1000 a month
Sales are 100,000 a month
He gets 1% of sales as commissions = 1000
So in this example, he does not get paid any commissions.

If he sold 200,000 he would get 1000 paid in commissiio.

I have it structured where the monthly draw is in one row and below I have
the comissions, but I want to show the ammount of commissions they get
paid,
if they have to get paid.

Hope its clear. Its kind of hard explaining it in words.

THanks


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,059
Default calculating commissions

"RC" wrote:
Sales person makes 1000 a month
Sales are 100,000 a month
He gets 1% of sales as commissions = 1000
So in this example, he does not get paid any commissions.
If he sold 200,000 he would get 1000 paid in commissiio.


Do you mean he gets 1% of sales less his salary?

If so, then:

=MAX(0, A1*1% - A2)

where A1 is sales and A2 is salary.


----- original message -----

"RC" wrote in message
...
I am looking for a formula that allows me to calculate payment to sales
people for comissions but with a draw.

Example

Sales person makes 1000 a month
Sales are 100,000 a month
He gets 1% of sales as commissions = 1000
So in this example, he does not get paid any commissions.

If he sold 200,000 he would get 1000 paid in commissiio.

I have it structured where the monthly draw is in one row and below I have
the comissions, but I want to show the ammount of commissions they get
paid,
if they have to get paid.

Hope its clear. Its kind of hard explaining it in words.

THanks


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 915
Default calculating commissions

RC wrote:
I am looking for a formula that allows me to calculate payment to sales
people for comissions but with a draw.

Example

Sales person makes 1000 a month
Sales are 100,000 a month
He gets 1% of sales as commissions = 1000
So in this example, he does not get paid any commissions.

If he sold 200,000 he would get 1000 paid in commissiio.

I have it structured where the monthly draw is in one row and below I have
the comissions, but I want to show the ammount of commissions they get paid,
if they have to get paid.

Hope its clear. Its kind of hard explaining it in words.

THanks


I interpreted your example as follows:

"A salesperson's commission rate is 1% of sales, but only to the extent
that the commission exceeds the salary. How do I calculate the commission?"

Then using named ranges to indicate Sales and Salary, this will be the
commission:

=MAX((Sales*0.01)-Salary,0)
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
using SUMPRODUCT() for commissions Amanda Excel Worksheet Functions 7 January 1st 07 03:46 PM
commissions by range abryan Excel Worksheet Functions 7 November 26th 05 11:42 PM
calculating commissions for a range of values abryan Excel Worksheet Functions 2 November 26th 05 06:01 PM
how to calculate commissions Peter Excel Worksheet Functions 6 November 5th 05 08:01 AM
Calculate commissions Pete Petersen Excel Worksheet Functions 6 November 17th 04 10:15 PM


All times are GMT +1. The time now is 03:23 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"