#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default formulas, percentage

I am trying to input a formula that will work out an amount added together.
The only thing that is different is that I would like to work out different
part of the amount entered. For example if 600 is entered then in the
formula colum it works out the first 29.99 @ 5.2%, 30-99.99@3%,
%, 200-299.99@2%, % and over 600@1%. I also
need it the work it out accuratley if for exaple 150 is entered then the cell
would match it up to the 100 to 199.99 and work out that it needs to
calculate it and give 2.5% of 150 as the answer. Anyone help,
please!

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,624
Default formulas, percentage

See

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


In article ,
Aaron Holmes wrote:

I am trying to input a formula that will work out an amount added together.
The only thing that is different is that I would like to work out different
part of the amount entered. For example if 600 is entered then in the
formula colum it works out the first 29.99 @ 5.2%, 30-99.99@3%,
%, 200-299.99@2%, % and over 600@1%. I also
need it the work it out accuratley if for exaple 150 is entered then the cell
would match it up to the 100 to 199.99 and work out that it needs to
calculate it and give 2.5% of 150 as the answer. Anyone help,
please!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default formulas, percentage

On Apr 8, 10:39*am, JE McGimpsey wrote:
See

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

In article ,
*Aaron Holmes wrote:



I am trying to input a formula that will work out an amount added together. *
The only thing that is different is that I would like to work out different
part of the amount entered. *For example if 600 is entered then in the
formula colum it works out the first 29.99 @ 5.2%, 30-99.99@3%,
%, 200-299.99@2%, % and over 600@1%. *I also
need it the work it out accuratley if for exaple 150 is entered then the cell
would match it up to the 100 to 199.99 and work out that it needs to
calculate it and give 2.5% of 150 as the answer. *Anyone help,
please!- Hide quoted text -


- Show quoted text -


Or modify this to fit your needs
=IF(C4<30,C4*0.052,IF(AND(C4=30,C4<=99.99),C4*0.0 3,IF(AND(C4=100,C4<=199.99),C4*0.025,IF(AND(C4=2 00,C4<=299.99),C4*0.015,IF(AND(C4=300,C4<=599.99) ,C4*0.015,IF(C4=600,C4*0.01))))))
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,624
Default formulas, percentage

That won't work, as it applies one percentage to the entire amount
(rather than 5.2% to the first 29.99, 3% to the next 70, etc.)

FWIW, if it DID work, there's really no reason to use the AND()s. The
only time the second IF statement would be executed if if the first
criterion returns FALSE, so

=IF(C4<30, C4*5.2%, IF(AND(C4=30, C4<=99.99), C4*3%, ...


reduces to

=IF(C4<30, C4*5.2%, IF(C4<=99.99, C4*3%, ...




In article
,
wrote:

Or modify this to fit your needs
=IF(C4<30,C4*0.052,IF(AND(C4=30,C4<=99.99),C4*0.0 3,IF(AND(C4=100,C4<=199.99)
,C4*0.025,IF(AND(C4=200,C4<=299.99),C4*0.015,IF(A ND(C4=300,C4<=599.99),C4*0.
015,IF(C4=600,C4*0.01))))))

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default formulas, percentage

On Apr 8, 2:17*pm, JE McGimpsey wrote:
That won't work, as it applies one percentage to the entire amount
(rather than 5.2% to the first 29.99, 3% to the next 70, etc.)

FWIW, if it DID work, there's really no reason to use the AND()s. The
only time the second IF statement would be executed if if the first
criterion returns FALSE, so

* *=IF(C4<30, C4*5.2%, IF(AND(C4=30, C4<=99.99), C4*3%, ...

reduces to

* *=IF(C4<30, C4*5.2%, IF(C4<=99.99, C4*3%, ...

In article
,



wrote:
Or modify this to fit your needs
=IF(C4<30,C4*0.052,IF(AND(C4=30,C4<=99.99),C4*0.0 3,IF(AND(C4=100,C4<=199.*99)
,C4*0.025,IF(AND(C4=200,C4<=299.99),C4*0.015,IF(A ND(C4=300,C4<=599.99),C4**0.
015,IF(C4=600,C4*0.01))))))- Hide quoted text -


- Show quoted text -


Thats what I thought, but his statement "I also
need it the work it out accuratley if for exaple 150 is entered then
the cell
would match it up to the 100 to 199.99 and work out that it needs to
calculate it and give 2.5% of 150 as the answer. Anyone help,
please! " made me think that is the way he wanted it, he kind of
contradicts himself between the first and last statements. Thanks for
shortening thast for me, I use to be pretty good with this stuff but
have been out of it for 6 years and its kinda like learning all over
again lol.



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
Percentage formulas now post Trevea Excel Worksheet Functions 2 February 15th 08 07:21 AM
Formulas for percentage beehappy4ever Excel Discussion (Misc queries) 1 August 26th 06 07:08 AM
Comment card percentage formulas chicpea Excel Worksheet Functions 2 July 29th 06 02:01 PM
Percentage Formulas julianrice767 Excel Discussion (Misc queries) 2 April 10th 06 05:20 PM
How can i find percentage and other xcel formulas? SOLAR Excel Discussion (Misc queries) 1 May 17th 05 12:00 AM


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