Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
vnsrod2000
 
Posts: n/a
Default Logical Function - Multiple IF statements

Can anyone help me figure out a formula for the following sliding bonus
scenario:

To receive a bonus, Gross Profit must be at least $250,000
Once minimum is met, bonuses are calculated as a percent of the Adjusted GP
(GP minus $250,000) as follows:

If Actual GP is under $500,000:
3% of Adjusted GP

If Actual GP is $500,000 up to $750,000:
3% of first $250,000
4% of balance of Adjusted GP

If Actual GP is over $750,000:
3% of first $250,000
4% of second $250,000
4.5% of balance of Adjusted GP

Thanks!!
  #2   Report Post  
Jason Morin
 
Posts: n/a
Default

See here for an example:

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

HTH
Jason
Atlanta, GA

-----Original Message-----
Can anyone help me figure out a formula for the

following sliding bonus
scenario:

To receive a bonus, Gross Profit must be at least

$250,000
Once minimum is met, bonuses are calculated as a percent

of the Adjusted GP
(GP minus $250,000) as follows:

If Actual GP is under $500,000:
3% of Adjusted GP

If Actual GP is $500,000 up to $750,000:
3% of first $250,000
4% of balance of Adjusted GP

If Actual GP is over $750,000:
3% of first $250,000
4% of second $250,000
4.5% of balance of Adjusted GP

Thanks!!
.

  #3   Report Post  
vnsrod2000
 
Posts: n/a
Default

Thanks, but I don't think the SUMPRODUCT function will work because I'm not
going to have the data listed...

In my spreadsheet, a person will type in the Actual Gross Profit in cell D29
and then the result of the calculation (where the formula is) will be in cell
D31.

"Jason Morin" wrote:

See here for an example:

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

HTH
Jason
Atlanta, GA

-----Original Message-----
Can anyone help me figure out a formula for the

following sliding bonus
scenario:

To receive a bonus, Gross Profit must be at least

$250,000
Once minimum is met, bonuses are calculated as a percent

of the Adjusted GP
(GP minus $250,000) as follows:

If Actual GP is under $500,000:
3% of Adjusted GP

If Actual GP is $500,000 up to $750,000:
3% of first $250,000
4% of balance of Adjusted GP

If Actual GP is over $750,000:
3% of first $250,000
4% of second $250,000
4.5% of balance of Adjusted GP

Thanks!!
.


  #4   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Did you try it?

The whole article is based on entering your AGP in one cell...

Your example is a rather straightforward application of the first
technique shown:

=IF(D29=250000,SUMPRODUCT(--(D29{0,500000,750000}),
(D29-{0,500000,750000}),{0.03,0.01,0.005}),0)

The remaining techniques make things more flexible, but aren't required.


In article ,
"vnsrod2000" wrote:

Thanks, but I don't think the SUMPRODUCT function will work because I'm not
going to have the data listed...

In my spreadsheet, a person will type in the Actual Gross Profit in cell D29
and then the result of the calculation (where the formula is) will be in cell
D31.

  #5   Report Post  
vnsrod2000
 
Posts: n/a
Default

Sorry, I see now that it is applicable...However, maybe because I'm not as
savvy with the formulas, I cannot get it to work. The one you include doesn't
calculate properly(if it was intended to). If actual GP is $850,000, then the
result should be $22,000.

Any further assistance is appreicated....Thanks.

"JE McGimpsey" wrote:

Did you try it?

The whole article is based on entering your AGP in one cell...

Your example is a rather straightforward application of the first
technique shown:

=IF(D29=250000,SUMPRODUCT(--(D29{0,500000,750000}),
(D29-{0,500000,750000}),{0.03,0.01,0.005}),0)

The remaining techniques make things more flexible, but aren't required.


In article ,
"vnsrod2000" wrote:

Thanks, but I don't think the SUMPRODUCT function will work because I'm not
going to have the data listed...

In my spreadsheet, a person will type in the Actual Gross Profit in cell D29
and then the result of the calculation (where the formula is) will be in cell
D31.




  #6   Report Post  
Harlan Grove
 
Posts: n/a
Default

vnsrod2000 wrote...
Sorry, I see now that it is applicable...However, maybe because I'm

not as
savvy with the formulas, I cannot get it to work. The one you include

doesn't
calculate properly(if it was intended to). If actual GP is $850,000,

then the
result should be $22,000.

Any further assistance is appreicated....Thanks.

....

JE may have been a little hasty in his specific formula, but the
technique is sound. Try

=SUMPRODUCT(--(GP{250,500,750}*1000),GP-{250,500,750}*1000,{0.03,0.01,0.005})

  #7   Report Post  
vnsrod2000
 
Posts: n/a
Default

Seems to be working brilliantly!
Thanks Harlan
Thanks JE
Thanks Jason


"Harlan Grove" wrote:

vnsrod2000 wrote...
Sorry, I see now that it is applicable...However, maybe because I'm

not as
savvy with the formulas, I cannot get it to work. The one you include

doesn't
calculate properly(if it was intended to). If actual GP is $850,000,

then the
result should be $22,000.

Any further assistance is appreicated....Thanks.

....

JE may have been a little hasty in his specific formula, but the
technique is sound. Try

=SUMPRODUCT(--(GP{250,500,750}*1000),GP-{250,500,750}*1000,{0.03,0.01,0.005})


  #8   Report Post  
JE McGimpsey
 
Posts: n/a
Default

In article . com,
"Harlan Grove" wrote:

JE may have been a little hasty in his specific formula


Indeed. Thanks for the correction!
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
SumIf Function using multiple criteria Jamie A Miller Excel Worksheet Functions 1 February 4th 05 05:14 PM
Multiple OR function Scott P Excel Worksheet Functions 6 January 14th 05 02:10 PM
Multiple Worksheets and Print Merge function pfe Excel Discussion (Misc queries) 2 December 2nd 04 11:23 PM
using logical functions as criteria with the SUMIF function pfdubz Excel Worksheet Functions 6 December 1st 04 07:40 PM
multiple IF statements Nathan McElmurry Excel Worksheet Functions 1 November 18th 04 09:22 PM


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