Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Doug
 
Posts: n/a
Default Formula for determining sales commission

I pay sales commission that varies based on profit margin
I need a formula based on the margin:
When margin is .4, sales commission = .1
When margin is between .35 and ..39, sales commission = .09
ETC

What is the formula to determine?
I got this far:
=IF((H39=0.4),G39*0.1)


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips
 
Posts: n/a
Default Formula for determining sales commission

Try

=G39*VLOOKUP(H39,{0,0.11;0.35,0.1;0.4,0.09},2,TRUE )

the values, like .11 range between 0 and .35, .1 between .35 and .4 etc.
Change to suit.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Doug" wrote in message
...
I pay sales commission that varies based on profit margin
I need a formula based on the margin:
When margin is .4, sales commission = .1
When margin is between .35 and ..39, sales commission = .09
ETC

What is the formula to determine?
I got this far:
=IF((H39=0.4),G39*0.1)




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bpeltzer
 
Posts: n/a
Default Formula for determining sales commission

You could continue to build out the IF statement:
=if(h39=.4,.1,if(h39=.35,0.9,0))*g39 and so on.
I'd suggest instead building a two-column table. The first column would
have the margin breakpoints and the second column the payout rates. The
first column MUST be increasing. So, if your rates were 0 up to .35, .09 up
to .4 and .1 for .4 and up, your table would be 0 0 in row 1, .35 .09 in row
2 and .4 .1 in row 3. And your calculation would be
=if(h39<0,0,g39*vlookup(h39,Table,2,true)), where Table is defined as the
range where your table lives.
Then if you add more breakpoints, you only need to update the table (but
always be sure that the breakpoints in the first column are in ascending
order).
--Bruce

"Doug" wrote:

I pay sales commission that varies based on profit margin
I need a formula based on the margin:
When margin is .4, sales commission = .1
When margin is between .35 and ..39, sales commission = .09
ETC

What is the formula to determine?
I got this far:
=IF((H39=0.4),G39*0.1)


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
Sales V Commission updated calculation Carauto Excel Discussion (Misc queries) 5 December 9th 05 03:11 PM
Re-arrangement William Excel Discussion (Misc queries) 4 October 26th 05 09:11 AM
commission report formula Dave O. Excel Discussion (Misc queries) 1 April 15th 05 12:56 AM
Looking for a temlate for sales and commission input? Imagine Excel Discussion (Misc queries) 1 December 15th 04 09:15 PM
sales commission template trey Excel Discussion (Misc queries) 0 December 4th 04 02:32 PM


All times are GMT +1. The time now is 09:04 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"