Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Kim
 
Posts: n/a
Default Not sure what type of Formula to use...

I am working on an "experience" bonus for my sales reps. For every new sale
they make, the salesman's commision goes up .1% (one 10th of a percent) up to
their 50th sale which would be 5.0%. Can someone help me with a formula for
this?
Thank you very much!!!
  #2   Report Post  
Posted to microsoft.public.excel.misc
Elkar
 
Posts: n/a
Default Not sure what type of Formula to use...

Let's say your Total Sales Amount is in cell A1. Use this formula to find
the bonus:

=MIN(A1,50)*.1%

HTH,
Elkar


"Kim" wrote:

I am working on an "experience" bonus for my sales reps. For every new sale
they make, the salesman's commision goes up .1% (one 10th of a percent) up to
their 50th sale which would be 5.0%. Can someone help me with a formula for
this?
Thank you very much!!!

  #3   Report Post  
Posted to microsoft.public.excel.misc
JLatham
 
Posts: n/a
Default Not sure what type of Formula to use...

A couple of ways to approach this, depending on how you record your sales.

Assume that each sale is recorded by amount in column A starting at row 1, as
$1000.00
$495.33
$1040.21
etc
In B1 you could enter this formula:
=MIN(COUNT(A$1:A1),50)*0.1
Extend that down the page and with each numeric entry in column a, the
result will increase.
If you're recording sales as text "Shirts", "Pants" etc for entries in
column a, use COUNTA( instead of just COUNT(
COUNT() only counts cells with numeric entries
COUNTA() counts cells with pretty much anything in them (not empty).

If this bonus is to be added to a basic minimum bonus amount, then you could
modify the formula to add it in:
=MIN(COUNT(A$1:A1),50)*0.1 + .10
assuming a 10% minimum bonus amount.

If you just have a single cell (A1) that has the total number of sales in
it, then
=MIN(A1,50)*.01

MIN() function says display/use the smallest of the numbers within the
parenthesis. So if A1 has 51 or 1001 in it, 50 is the largest value that
would be used.



"Kim" wrote:

I am working on an "experience" bonus for my sales reps. For every new sale
they make, the salesman's commision goes up .1% (one 10th of a percent) up to
their 50th sale which would be 5.0%. Can someone help me with a formula for
this?
Thank you very much!!!

  #4   Report Post  
Posted to microsoft.public.excel.misc
Marcelo
 
Posts: n/a
Default Not sure what type of Formula to use...

Hi Kim,

=(0.1*30)/100
assuming 30 sales

if the sales are in a same column i.é.
Col A
1 $100.00
2 $200.00
3 $150.00

you could use =(0.1*COUNTA(A2:A100))/100

hth
regards from Brazil
Marcelo




"Kim" escreveu:

I am working on an "experience" bonus for my sales reps. For every new sale
they make, the salesman's commision goes up .1% (one 10th of a percent) up to
their 50th sale which would be 5.0%. Can someone help me with a formula for
this?
Thank you very much!!!

  #5   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Not sure what type of Formula to use...

a simple

=num_sales*.1%

if you want to cap it

=MIN(num_sales*.1%,max%)

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Kim" wrote in message
...
I am working on an "experience" bonus for my sales reps. For every new

sale
they make, the salesman's commision goes up .1% (one 10th of a percent) up

to
their 50th sale which would be 5.0%. Can someone help me with a formula

for
this?
Thank you very much!!!





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
Merge =( formula should retain fraction type numbers after merge. Aubrey Excel Worksheet Functions 0 February 9th 06 07:37 PM
Need help with A 3-D reference type formula (real novice here) topaz Excel Worksheet Functions 1 January 8th 06 08:14 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
The { formula } type of formula Alex Excel Worksheet Functions 7 June 17th 05 09:06 PM
How to I use ** without Excel thinking I want to type a formula? Buff Excel Discussion (Misc queries) 2 December 22nd 04 09:31 PM


All times are GMT +1. The time now is 10:57 PM.

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

About Us

"It's about Microsoft Excel"