Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 23
Default Creating a formula which multiplies by two seperate %'s

Hi all,

I need to create a formula which multiplies the first $52,000 by 2% and
anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
any help,

Byron

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Creating a formula which multiplies by two seperate %'s

try
=val * 0.02 + max(val-52000,0)*0.02

"Dos Equis" wrote:

Hi all,

I need to create a formula which multiplies the first $52,000 by 2% and
anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
any help,

Byron


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Creating a formula which multiplies by two seperate %'s

one way
=(MIN(F1,50000)*0.02)+(MAX(F1-50000,0)*0.04)

--
Don Guillett
SalesAid Software

"Dos Equis" wrote in message
oups.com...
Hi all,

I need to create a formula which multiplies the first $52,000 by 2% and
anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
any help,

Byron



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,574
Default Creating a formula which multiplies by two seperate %'s

=52000*.02+(X-52000)*.04 where X is your amount above $52,000.

Dave
--
Brevity is the soul of wit.


"Dos Equis" wrote:

Hi all,

I need to create a formula which multiplies the first $52,000 by 2% and
anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
any help,

Byron


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Creating a formula which multiplies by two seperate %'s

Maybe that should be:

=(MIN(F1,52000)*0.02)+(MAX(F1-52000,0)*0.04)

HTH,
--
Kevin James.
Tua'r Goleuni
"Don Guillett" wrote in message
...
| one way
| =(MIN(F1,50000)*0.02)+(MAX(F1-50000,0)*0.04)
|
| --
| Don Guillett
| SalesAid Software
|
| "Dos Equis" wrote in message
| oups.com...
| Hi all,
|
| I need to create a formula which multiplies the first $52,000 by 2% and
| anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
| any help,
|
| Byron
|
|
|




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Creating a formula which multiplies by two seperate %'s

That only works for numbers greater than or equal to 52000.

Less than 52000 and the second half of the formula results
in a negative value.

HTH,
--
Kevin James.
Tua'r Goleuni


"Dave F" wrote in message
...
| =52000*.02+(X-52000)*.04 where X is your amount above $52,000.
|
| Dave
| --
| Brevity is the soul of wit.
|
|
| "Dos Equis" wrote:
|
| Hi all,
|
| I need to create a formula which multiplies the first $52,000 by 2% and
| anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
| any help,
|
| Byron
|
|


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Creating a formula which multiplies by two seperate %'s

Slightly modified version

=( val+MAX(val-52000,0))*0.02

HTH,
--
Kevin James.
Tua'r Goleuni
"bj" wrote in message
...
| try
| =val * 0.02 + max(val-52000,0)*0.02
|
| "Dos Equis" wrote:
|
| Hi all,
|
| I need to create a formula which multiplies the first $52,000 by 2% and
| anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
| any help,
|
| Byron
|
|


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Creating a formula which multiplies by two seperate %'s

Hi Dos Equis,

Perhaps,

=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04)

Where B5 is the value you set the limit at i.e. 52000
Where B7 is the value to be evaluated.

HTH,
--
Kevin James.
Tua'r Goleuni


"Dos Equis" wrote in message
oups.com...
| Hi all,
|
| I need to create a formula which multiplies the first $52,000 by 2% and
| anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
| any help,
|
| Byron
|


  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 23
Default Creating a formula which multiplies by two seperate %'s

Thanks for all the help, while I was waiting I found an effective if
more involved soloution that involves two cells with the following
formulas: =(IF(C5<=52000,C5*0.02,0)) and
=(IF(C5=52000,(C5-52000)*0.04,0)). I then hid the cells and life was
good. When I first started on this I was told the formula was a
quarterly report, now I find out that it is a quarterly report, but the
amount is cumulative, meaning that at the end of the first quarter the
total may be in the 25,000 range, second quarter around 50,000, third
75K and 4th is above that... 52,000 is the cut off and may happen in
May or September... So, I now need to keep a running total and switch
from 2% to 4% when 52,000 is reached. I think the formula
=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04) may have merit
as it is already pointed to another cell for validation. Please help
some more...

TIA

Byron


Ponty'NPop wrote:
Hi Dos Equis,

Perhaps,

=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04)

Where B5 is the value you set the limit at i.e. 52000
Where B7 is the value to be evaluated.

HTH,
--
Kevin James.
Tua'r Goleuni


"Dos Equis" wrote in message
oups.com...
| Hi all,
|
| I need to create a formula which multiplies the first $52,000 by 2% and
| anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
| any help,
|
| Byron
|


  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Creating a formula which multiplies by two seperate %'s

I am confused. Originally you said that 2% was paid on the 1st 52,000 and
and extra 2% paid of the amount over 52,000...... Or, is 4% paid on all
after 52,000 is reached? Which???
Now, how often is the commission paid? Each quarter_________? Each month.
When???
Jan-Mar 40,000 = 2%
Apr-Jun 23,000 = 2% +2% of 11,000 or 2% of 63,000??

=(F1+MAX(F1-52000,0))*0.02
seems to be the most efficient formula

It does help to properly ask the question in the beginning.

--
Don Guillett
SalesAid Software

"Dos Equis" wrote in message
oups.com...
Thanks for all the help, while I was waiting I found an effective if
more involved soloution that involves two cells with the following
formulas: =(IF(C5<=52000,C5*0.02,0)) and
=(IF(C5=52000,(C5-52000)*0.04,0)). I then hid the cells and life was
good. When I first started on this I was told the formula was a
quarterly report, now I find out that it is a quarterly report, but the
amount is cumulative, meaning that at the end of the first quarter the
total may be in the 25,000 range, second quarter around 50,000, third
75K and 4th is above that... 52,000 is the cut off and may happen in
May or September... So, I now need to keep a running total and switch
from 2% to 4% when 52,000 is reached. I think the formula
=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04) may have merit
as it is already pointed to another cell for validation. Please help
some more...

TIA

Byron


Ponty'NPop wrote:
Hi Dos Equis,

Perhaps,

=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04)

Where B5 is the value you set the limit at i.e. 52000
Where B7 is the value to be evaluated.

HTH,
--
Kevin James.
Tua'r Goleuni


"Dos Equis" wrote in message
oups.com...
| Hi all,
|
| I need to create a formula which multiplies the first $52,000 by 2% and
| anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
| any help,
|
| Byron
|






  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 23
Default Creating a formula which multiplies by two seperate %'s

Sorry for the confusion, it would help if I had recieved the proper
information to begin with.
I'll try to clarify here.

Legal ads are tracked over the course of a year. For the first $52,000
charged, the legal secretary receives a 2% bonus, for everything
$52,001 and above, she receives a 4% bonus. the bonus is paid quarterly
and is being tracked in excel 2000.

I was able to make it work using 4 seperate formulas, each very simular
to one another.
This one is the most involved and does work, but was a pain to create.

=IF(C5+G5+K5<=52000,K5*0.02,IF(C5+G5+K552000,((C5 +G5+K5)-52000)*0.04+(52000-(C5+G5))*0.02))

Monthly totals are in columns C,G,K & O with quarterly totals on row 5.
the formula above is from the third quarter as I simply took the
quarterly total of the 4th quarter and assumed 4%.
Basicly, I summed the first 3 quarters and compared that to 52K, if
less than, then sumX2% if greater than 52K then (Sum - 52K) * 4% + (52K
- (q1+q2)) * 2% this way, she gets credit for everything. Not sure
about effciency, but it works and that was my goal.

Thanks for the help provided, once I saw some of the suggestions, I was
able to work this up.

Thanks all,

Byron

Don Guillett wrote:
I am confused. Originally you said that 2% was paid on the 1st 52,000 and
and extra 2% paid of the amount over 52,000...... Or, is 4% paid on all
after 52,000 is reached? Which???
Now, how often is the commission paid? Each quarter_________? Each month.
When???
Jan-Mar 40,000 = 2%
Apr-Jun 23,000 = 2% +2% of 11,000 or 2% of 63,000??

=(F1+MAX(F1-52000,0))*0.02
seems to be the most efficient formula

It does help to properly ask the question in the beginning.

--
Don Guillett
SalesAid Software

"Dos Equis" wrote in message
oups.com...
Thanks for all the help, while I was waiting I found an effective if
more involved soloution that involves two cells with the following
formulas: =(IF(C5<=52000,C5*0.02,0)) and
=(IF(C5=52000,(C5-52000)*0.04,0)). I then hid the cells and life was
good. When I first started on this I was told the formula was a
quarterly report, now I find out that it is a quarterly report, but the
amount is cumulative, meaning that at the end of the first quarter the
total may be in the 25,000 range, second quarter around 50,000, third
75K and 4th is above that... 52,000 is the cut off and may happen in
May or September... So, I now need to keep a running total and switch
from 2% to 4% when 52,000 is reached. I think the formula
=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04) may have merit
as it is already pointed to another cell for validation. Please help
some more...

TIA

Byron


Ponty'NPop wrote:
Hi Dos Equis,

Perhaps,

=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04)

Where B5 is the value you set the limit at i.e. 52000
Where B7 is the value to be evaluated.

HTH,
--
Kevin James.
Tua'r Goleuni


"Dos Equis" wrote in message
oups.com...
| Hi all,
|
| I need to create a formula which multiplies the first $52,000 by 2% and
| anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
| any help,
|
| Byron
|



  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 23
Default Creating a formula which multiplies by two seperate %'s

Sorry for the confusion, it would help if I had recieved the proper
information to begin with.
I'll try to clarify here.

Legal ads are tracked over the course of a year. For the first $52,000
charged, the legal secretary receives a 2% bonus, for everything
$52,001 and above, she receives a 4% bonus. the bonus is paid quarterly
and is being tracked in excel 2000.

I was able to make it work using 4 seperate formulas, each very simular
to one another.
This one is the most involved and does work, but was a pain to create.

=IF(C5+G5+K5<=52000,K5*0.02,IF(C5+G5+K552000,((C5 +G5+K5)-52000)*0.04+(52000-(C5+G5))*0.02))

Monthly totals are in columns C,G,K & O with quarterly totals on row 5.
the formula above is from the third quarter as I simply took the
quarterly total of the 4th quarter and assumed 4%.
Basicly, I summed the first 3 quarters and compared that to 52K, if
less than, then sumX2% if greater than 52K then (Sum - 52K) * 4% + (52K
- (q1+q2)) * 2% this way, she gets credit for everything. Not sure
about effciency, but it works and that was my goal.

Thanks for the help provided, once I saw some of the suggestions, I was
able to work this up.

Thanks all,

Byron

Don Guillett wrote:
I am confused. Originally you said that 2% was paid on the 1st 52,000 and
and extra 2% paid of the amount over 52,000...... Or, is 4% paid on all
after 52,000 is reached? Which???
Now, how often is the commission paid? Each quarter_________? Each month.
When???
Jan-Mar 40,000 = 2%
Apr-Jun 23,000 = 2% +2% of 11,000 or 2% of 63,000??

=(F1+MAX(F1-52000,0))*0.02
seems to be the most efficient formula

It does help to properly ask the question in the beginning.

--
Don Guillett
SalesAid Software

"Dos Equis" wrote in message
oups.com...
Thanks for all the help, while I was waiting I found an effective if
more involved soloution that involves two cells with the following
formulas: =(IF(C5<=52000,C5*0.02,0)) and
=(IF(C5=52000,(C5-52000)*0.04,0)). I then hid the cells and life was
good. When I first started on this I was told the formula was a
quarterly report, now I find out that it is a quarterly report, but the
amount is cumulative, meaning that at the end of the first quarter the
total may be in the 25,000 range, second quarter around 50,000, third
75K and 4th is above that... 52,000 is the cut off and may happen in
May or September... So, I now need to keep a running total and switch
from 2% to 4% when 52,000 is reached. I think the formula
=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04) may have merit
as it is already pointed to another cell for validation. Please help
some more...

TIA

Byron


Ponty'NPop wrote:
Hi Dos Equis,

Perhaps,

=((B7=B5)*B5+(B7<B5)*B7)*0.02+((B7B5)*(B7-B5)*0.04)

Where B5 is the value you set the limit at i.e. 52000
Where B7 is the value to be evaluated.

HTH,
--
Kevin James.
Tua'r Goleuni


"Dos Equis" wrote in message
oups.com...
| Hi all,
|
| I need to create a formula which multiplies the first $52,000 by 2% and
| anything left by 4%. Sounds easy, but It's kicking my butt. Thanks for
| any help,
|
| Byron
|



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
Reusing formula Tony29 Excel Discussion (Misc queries) 7 September 7th 06 03:34 AM
Creating a complicated formula Cheryl Excel Worksheet Functions 3 July 19th 06 12:50 PM
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 08:02 PM
Creating Formula using check boxes Anthony Slater Excel Discussion (Misc queries) 3 January 4th 05 03:03 PM
Formula to Seperate data in 1 cell Sho Excel Worksheet Functions 2 November 11th 04 05:35 PM


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