Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Earnings based on gross commission with split levels

I need help with a formula that calculates earnings based on gross commission
with split levels. For example

A gross commission less than 100,000 up to 100,000 makes 50% €¦a gross
commission greater than 100,000 will pay as follows€¦the 2nd 100,000 (100,001
to 200,000 makes 60%...the next 100,000 (200,001 €“ 300,000) makes 70%, so on
and so forth€¦


So with a 400,000 gross commission:

The first 100,000 will pay at 50% = $50,000
The 2nd 100,000 will pay at 60% = $60,000
The 3rd 100,000 will pay at 70% = $70,000
The 4th 100,000 will pay at 80% = $80,000
Total Earnings€¦€¦€¦€¦€¦€¦€¦€¦.$260,000

I need the formula to calculate so that if any of the variables (commission
amounts or split levels) change, the earnings automatically change for all
the individuals.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Earnings based on gross commission with split levels


Try using the method suggested here

'McGimpsey & Associates : Excel : Using SUMPRODUCT() with variable
rates' (http://www.mcgimpsey.com/excel/variablerate.html)


--
barry houdini
------------------------------------------------------------------------
barry houdini's Profile: http://www.thecodecage.com/forumz/member.php?userid=72
View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=145733

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,651
Default Earnings based on gross commission with split levels

On Mon, 19 Oct 2009 12:17:01 -0700, WaterWalk1
wrote:

I need help with a formula that calculates earnings based on gross commission
with split levels. For example

A gross commission less than 100,000 up to 100,000 makes 50% …a gross
commission greater than 100,000 will pay as follows…the 2nd 100,000 (100,001
to 200,000 makes 60%...the next 100,000 (200,001 – 300,000) makes 70%, so on
and so forth…


So with a 400,000 gross commission:

The first 100,000 will pay at 50% = $50,000
The 2nd 100,000 will pay at 60% = $60,000
The 3rd 100,000 will pay at 70% = $70,000
The 4th 100,000 will pay at 80% = $80,000
Total Earnings…………………….$260,000

I need the formula to calculate so that if any of the variables (commission
amounts or split levels) change, the earnings automatically change for all
the individuals.


This kind of problem is often solved using a lookup table. However, in the
information you post, you do not indicate what the percentage is for amounts
more than $400,000. I assumed 90%, but you might want to change that.

In any event, set up a table someplace on your sheet
I NAME'd it "Tbl"

Tbl looks like this:

$0 $0 50%
$100,000 $50,000 60%
$200,000 $110,000 70%
$300,000 $180,000 80%
$400,000 $260,000 90%

Column 2 is the amount to be paid with earnings from column 1. So with the
table in H1:J4

H1: 0
I1: 0
J1: 50%

H2: 100000
I2: =(H2-H1)*J1+I1
J2: 50%

Fill in the rest of col H and col J; and copy down I2 to I4.

Then use this formula:

=VLOOKUP(A1,Tbl,2)+(A1-VLOOKUP(A1,Tbl,1))*VLOOKUP(A1,Tbl,3)



--ron
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
Formula for Gross Profit % to commission % based on GP $ Antveenie Excel Worksheet Functions 2 March 1st 10 08:30 PM
figuring commissions based on gross sales rjhocker Excel Worksheet Functions 1 September 12th 06 09:07 PM
Calculate gross profit based on varying percentages Pasko1 Excel Worksheet Functions 2 May 4th 06 03:14 AM
How do I create a commission chart based on dates worked? Orange Pegs in Cerritos Excel Worksheet Functions 0 January 4th 06 12:19 AM
calculate commission $ based on total sold and commission percent blondeindenver Excel Programming 1 July 6th 05 02:09 AM


All times are GMT +1. The time now is 08:20 PM.

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"