Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default lesser than, greater than

i have a table -

column a column b
$0 - $1,000,000 0.00%
$1,000,001 - $5,000,000 2.23%
$5,000,001 - $9,000,000 3.11%
$9,000,001 - $12,000,000 4.49%
$12,000,001 and above 5.65%

if e18 is more than 1,000,001 and less than 5,000,000 i want to mulitple e18
by 2.23. if e18 is more than 5,000,001 and less than 9,000,000 i want to
mulitple e18 by 3.11. if e18 is more than 9,000,001 and less than 12,000,000
i want to mulitple e18 by 4.49. same if e18 is above 12,000,0001.

How do i do that ?




--
problem
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,059
Default lesser than, greater than

"bigproblem" wrote:
if e18 is more than 1,000,001 and less than 5,000,000 i want
to mulitple e18 by 2.23.


First, I assume you mean "more than 1,000,000" or "not less than 1,000,001".
That is the typical interpretation of such tables.

Second, I assume you mean "multiply by 2.23%", or at least the number you
have in column B.

Start by reorganizing the table so that column A is simply the lower limit.
Then:

=E18*vlookup(E18,$A$1:$B$5,2)

If you truly want "more than 1,000,001" (e.g. 1,000,001.01 and more), change
the lower limit to 1000001.01, and use VLOOKUP(ROUND(E18,2),...).


----- original message -----

"bigproblem" wrote in message
...
i have a table -

column a column b
$0 - $1,000,000 0.00%
$1,000,001 - $5,000,000 2.23%
$5,000,001 - $9,000,000 3.11%
$9,000,001 - $12,000,000 4.49%
$12,000,001 and above 5.65%

if e18 is more than 1,000,001 and less than 5,000,000 i want to mulitple
e18
by 2.23. if e18 is more than 5,000,001 and less than 9,000,000 i want to
mulitple e18 by 3.11. if e18 is more than 9,000,001 and less than
12,000,000
i want to mulitple e18 by 4.49. same if e18 is above 12,000,0001.

How do i do that ?




--
problem


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default lesser than, greater than


depending on where e18 falls in the range i want to multiple it (e18) by
what is in column c

column a column b column c
0 1,000,000 0.00%
1,000,001 3,000,000 4.25%
3,000,001 5,000,000 5.15%
5,000,001 7,000,000 5.40%

--
problem


"JoeU2004" wrote:

"bigproblem" wrote:
if e18 is more than 1,000,001 and less than 5,000,000 i want
to mulitple e18 by 2.23.


First, I assume you mean "more than 1,000,000" or "not less than 1,000,001".
That is the typical interpretation of such tables.

Second, I assume you mean "multiply by 2.23%", or at least the number you
have in column B.

Start by reorganizing the table so that column A is simply the lower limit.
Then:

=E18*vlookup(E18,$A$1:$B$5,2)

If you truly want "more than 1,000,001" (e.g. 1,000,001.01 and more), change
the lower limit to 1000001.01, and use VLOOKUP(ROUND(E18,2),...).


----- original message -----

"bigproblem" wrote in message
...
i have a table -

column a column b
$0 - $1,000,000 0.00%
$1,000,001 - $5,000,000 2.23%
$5,000,001 - $9,000,000 3.11%
$9,000,001 - $12,000,000 4.49%
$12,000,001 and above 5.65%

if e18 is more than 1,000,001 and less than 5,000,000 i want to mulitple
e18
by 2.23. if e18 is more than 5,000,001 and less than 9,000,000 i want to
mulitple e18 by 3.11. if e18 is more than 9,000,001 and less than
12,000,000
i want to mulitple e18 by 4.49. same if e18 is above 12,000,0001.

How do i do that ?




--
problem



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 449
Default lesser than, greater than

Column 2 is now column 3:
=E18*vlookup(E18,$A$1:$B$5,3)

HTH. Best wishes Harald


"bigproblem" wrote in message
...

depending on where e18 falls in the range i want to multiple it (e18) by
what is in column c

column a column b column c
0 1,000,000 0.00%
1,000,001 3,000,000 4.25%
3,000,001 5,000,000 5.15%
5,000,001 7,000,000 5.40%

--
problem


"JoeU2004" wrote:

"bigproblem" wrote:
if e18 is more than 1,000,001 and less than 5,000,000 i want
to mulitple e18 by 2.23.


First, I assume you mean "more than 1,000,000" or "not less than
1,000,001".
That is the typical interpretation of such tables.

Second, I assume you mean "multiply by 2.23%", or at least the number you
have in column B.

Start by reorganizing the table so that column A is simply the lower
limit.
Then:

=E18*vlookup(E18,$A$1:$B$5,2)

If you truly want "more than 1,000,001" (e.g. 1,000,001.01 and more),
change
the lower limit to 1000001.01, and use VLOOKUP(ROUND(E18,2),...).


----- original message -----

"bigproblem" wrote in message
...
i have a table -

column a column b
$0 - $1,000,000 0.00%
$1,000,001 - $5,000,000 2.23%
$5,000,001 - $9,000,000 3.11%
$9,000,001 - $12,000,000 4.49%
$12,000,001 and above 5.65%

if e18 is more than 1,000,001 and less than 5,000,000 i want to
mulitple
e18
by 2.23. if e18 is more than 5,000,001 and less than 9,000,000 i want
to
mulitple e18 by 3.11. if e18 is more than 9,000,001 and less than
12,000,000
i want to mulitple e18 by 4.49. same if e18 is above 12,000,0001.

How do i do that ?




--
problem




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,059
Default lesser than, greater than

"bigproblem" wrote:
depending on where e18 falls in the range i want to multiple it
(e18) by what is in column c


Similar to before, namely:

=E18*vlookup(E18,$A$1:$C$5,3)

I am assuming you inadvertently omitted the line for "7,000,001 and
above" -- row 5.

But I wonder....

1. What percentage should apply to 3,000,000.01?

2. Are you correct about your interpretation of the table? Instead of
multiplying all of E18 by a single percentage, should you apply 0% to the
first 1,000,000, 4.25% to the amount over 1,000,000 up to and including
3,000,000, etc?

For example, for 2,000,000 in E18, should the result be 85,000
(2,000,000 * 4.25%), or should the result be 42,500 -- 1,000,000 * 0% +
(2,000,000 - 1,000,000) * 4.25%?


----- original message -----

"bigproblem" wrote in message
...

depending on where e18 falls in the range i want to multiple it (e18) by
what is in column c

column a column b column c
0 1,000,000 0.00%
1,000,001 3,000,000 4.25%
3,000,001 5,000,000 5.15%
5,000,001 7,000,000 5.40%

--
problem


"JoeU2004" wrote:

"bigproblem" wrote:
if e18 is more than 1,000,001 and less than 5,000,000 i want
to mulitple e18 by 2.23.


First, I assume you mean "more than 1,000,000" or "not less than
1,000,001".
That is the typical interpretation of such tables.

Second, I assume you mean "multiply by 2.23%", or at least the number you
have in column B.

Start by reorganizing the table so that column A is simply the lower
limit.
Then:

=E18*vlookup(E18,$A$1:$B$5,2)

If you truly want "more than 1,000,001" (e.g. 1,000,001.01 and more),
change
the lower limit to 1000001.01, and use VLOOKUP(ROUND(E18,2),...).


----- original message -----

"bigproblem" wrote in message
...
i have a table -

column a column b
$0 - $1,000,000 0.00%
$1,000,001 - $5,000,000 2.23%
$5,000,001 - $9,000,000 3.11%
$9,000,001 - $12,000,000 4.49%
$12,000,001 and above 5.65%

if e18 is more than 1,000,001 and less than 5,000,000 i want to
mulitple
e18
by 2.23. if e18 is more than 5,000,001 and less than 9,000,000 i want
to
mulitple e18 by 3.11. if e18 is more than 9,000,001 and less than
12,000,000
i want to mulitple e18 by 4.49. same if e18 is above 12,000,0001.

How do i do that ?




--
problem






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,533
Default lesser than, greater than

Another option entered as one line:

=IF(E18<=1000000,0,IF(E18<=5000000,E18*2.23%,IF(E1 8<=9000000,E18*3.11%,IF(E18<=12000000,E18*4.49%,E1 8*5.65%))))


Regards,
Per

"bigproblem" skrev i meddelelsen
...
i have a table -

column a column b
$0 - $1,000,000 0.00%
$1,000,001 - $5,000,000 2.23%
$5,000,001 - $9,000,000 3.11%
$9,000,001 - $12,000,000 4.49%
$12,000,001 and above 5.65%

if e18 is more than 1,000,001 and less than 5,000,000 i want to mulitple
e18
by 2.23. if e18 is more than 5,000,001 and less than 9,000,000 i want to
mulitple e18 by 3.11. if e18 is more than 9,000,001 and less than
12,000,000
i want to mulitple e18 by 4.49. same if e18 is above 12,000,0001.

How do i do that ?




--
problem


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 449
Default lesser than, greater than

Yet another just for the fun of it:

=E18*(0,0223*(E181000000)+0,0088*(E185000000)+0, 0179*(E189000000)+0,0075*(E1812000000))

I'd do what JoeU2004 suggests, VLOOKUP, by far the easiest to understand and
maintain when values change in a year or so.

But we are doing percentage of the whole amount: May it be that the result
really should be 0 for the first million, then 2.23 of only anything between
1 and 5 million, and then 3.11 only of anything between 5 and 9 million, and
so on, as in progressive tax?

Best wishes Harald

"bigproblem" wrote in message
...
i have a table -

column a column b
$0 - $1,000,000 0.00%
$1,000,001 - $5,000,000 2.23%
$5,000,001 - $9,000,000 3.11%
$9,000,001 - $12,000,000 4.49%
$12,000,001 and above 5.65%

if e18 is more than 1,000,001 and less than 5,000,000 i want to mulitple
e18
by 2.23. if e18 is more than 5,000,001 and less than 9,000,000 i want to
mulitple e18 by 3.11. if e18 is more than 9,000,001 and less than
12,000,000
i want to mulitple e18 by 4.49. same if e18 is above 12,000,0001.

How do i do that ?




--
problem


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
greater/lesser than gma Excel Worksheet Functions 5 February 24th 09 10:13 PM
Adding a figure + a percentage after using lesser than or greater stevemel50 Excel Discussion (Misc queries) 2 January 10th 07 07:26 PM
putting a number that is greater or lesser into different cell . James Krepel Excel Worksheet Functions 1 November 2nd 06 04:02 AM
greater than or lesser than formulas Orrutility secretary Excel Discussion (Misc queries) 4 September 27th 05 07:41 PM
if greater or lesser than ditchy Excel Discussion (Misc queries) 5 August 4th 05 04:10 AM


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