Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15
Default If Then Calculations

Help!
I'm a small business owner trying to design a commission spreadsheet based
on commissions that depend on profits.

For Instance:
Profits = 1000 - 5000, Commission = 2%
Profits = 5001 - 10000, Commission = 4%
Profits = 15001 - 20000, Commission = 5%

I can figure out how to make words fill the cell based on the number input
but I cant get it to perform a calculation based on the number input.

Help!

Marti
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,624
Default If Then Calculations

If your commission schedule is NOT progressive (i.e., if a profit of
$5,000 earns $5,000*2% = $100, while $5,001 earns $5,001*3% = $150.03):

=A1*LOOKUP(A1, {0,0;1000,0.02;5000.01,0.03;15000.01,0.05})

If your schedule IS progressive (e.g., $5,001 earns $100 + $1*3% =
$100.03):

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


In article ,
Marti wrote:

Help!
I'm a small business owner trying to design a commission spreadsheet based
on commissions that depend on profits.

For Instance:
Profits = 1000 - 5000, Commission = 2%
Profits = 5001 - 10000, Commission = 4%
Profits = 15001 - 20000, Commission = 5%

I can figure out how to make words fill the cell based on the number input
but I cant get it to perform a calculation based on the number input.

Help!

Marti

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15
Default If Then Calculations

Thanks a million! It worked!!!

Marti

"JE McGimpsey" wrote:

If your commission schedule is NOT progressive (i.e., if a profit of
$5,000 earns $5,000*2% = $100, while $5,001 earns $5,001*3% = $150.03):

=A1*LOOKUP(A1, {0,0;1000,0.02;5000.01,0.03;15000.01,0.05})

If your schedule IS progressive (e.g., $5,001 earns $100 + $1*3% =
$100.03):

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


In article ,
Marti wrote:

Help!
I'm a small business owner trying to design a commission spreadsheet based
on commissions that depend on profits.

For Instance:
Profits = 1000 - 5000, Commission = 2%
Profits = 5001 - 10000, Commission = 4%
Profits = 15001 - 20000, Commission = 5%

I can figure out how to make words fill the cell based on the number input
but I cant get it to perform a calculation based on the number input.

Help!

Marti


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default If Then Calculations

You have an uncovered range in your schedule: greater than 10000 but less
than 15001.

Try this:

=A1*LOOKUP(A1,{0,1000,5001,10001,15001},{0,0.02,0. 04,0.045,0.05})

I've "covered" that missing range with a commission of 4.5%. Change to suit.

Note: any value greater than 15000 will receive a 5% commission.

--
Biff
Microsoft Excel MVP


"Marti" wrote in message
...
Help!
I'm a small business owner trying to design a commission spreadsheet based
on commissions that depend on profits.

For Instance:
Profits = 1000 - 5000, Commission = 2%
Profits = 5001 - 10000, Commission = 4%
Profits = 15001 - 20000, Commission = 5%

I can figure out how to make words fill the cell based on the number input
but I cant get it to perform a calculation based on the number input.

Help!

Marti



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
IRR calculations MJW[_2_] Excel Discussion (Misc queries) 5 May 9th 07 02:08 PM
Calculations KB-1 Excel Discussion (Misc queries) 2 May 6th 07 02:35 AM
Calculations Randy Setting up and Configuration of Excel 14 February 15th 07 04:20 AM
#N/A in calculations JonR Excel Worksheet Functions 6 September 10th 06 07:33 PM
how many calculations? Amie Excel Worksheet Functions 0 April 21st 06 08:04 PM


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