#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 272
Default Need formula

First of all...thank you all for helping me along. I finally understand the
whole process I'm using. Unfortunately when I try to add more price "groups"
to the formulas I was given they don't work. I thought I could figure it out
on my own if someone got me started, but obviously I can't :o

If someone doesn't mind doing this for me...


0-10 in column A. Add $2 and multiply by 1.03 to give me a value in column B.

10.01-50 in column A. Add $5 and multiply by 1.03 to give me a value in
column B.

50.01-100 in column A. Add $8 and multiply by 1.03 to give me a value in
column B.

100.01-225 in column A. Add $10 and multiply buy 1.03 to give me a value in
column B.

225.01-400 in column A. Add $15 and multiply buy 1.03 to give me a value in
column B.

400.01-575 in column A. Add $20 and multiply buy 1.03 to give me a value in
column B.

575.01-700 in column A. Add $30 and multiply buy 1.03 to give me a value in
column B.

700.01-1000 in column A. Add $40 and multiply buy 1.03 to give me a value
in column B.

1000.01-1550 in column A. Add $50 and multiply buy 1.03 to give me a value
in column B.

1550.01 and over in column A. Multiply by 1.06.

Thanks in advance...again!





--
Thanks :) Lori
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Need formula

Try it this way:

=IF(A11550,A1*1.06,(A1+LOOKUP(A1,{0,10.01,50.01,1 00.01,225.01,400.01,575.01,700.01,1000.01},{2,5,8, 10,15,20,30,40,50}))*1.03)

Regards,
Fred.

"Lori" wrote in message
...
First of all...thank you all for helping me along. I finally understand
the
whole process I'm using. Unfortunately when I try to add more price
"groups"
to the formulas I was given they don't work. I thought I could figure it
out
on my own if someone got me started, but obviously I can't :o

If someone doesn't mind doing this for me...


0-10 in column A. Add $2 and multiply by 1.03 to give me a value in
column B.

10.01-50 in column A. Add $5 and multiply by 1.03 to give me a value in
column B.

50.01-100 in column A. Add $8 and multiply by 1.03 to give me a value in
column B.

100.01-225 in column A. Add $10 and multiply buy 1.03 to give me a value
in
column B.

225.01-400 in column A. Add $15 and multiply buy 1.03 to give me a value
in
column B.

400.01-575 in column A. Add $20 and multiply buy 1.03 to give me a value
in
column B.

575.01-700 in column A. Add $30 and multiply buy 1.03 to give me a value
in
column B.

700.01-1000 in column A. Add $40 and multiply buy 1.03 to give me a value
in column B.

1000.01-1550 in column A. Add $50 and multiply buy 1.03 to give me a
value
in column B.

1550.01 and over in column A. Multiply by 1.06.

Thanks in advance...again!





--
Thanks :) Lori


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Need formula

See answer in your original post.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Lori" wrote in message
...
First of all...thank you all for helping me along. I finally understand

the
whole process I'm using. Unfortunately when I try to add more price

"groups"
to the formulas I was given they don't work. I thought I could figure it

out
on my own if someone got me started, but obviously I can't :o

If someone doesn't mind doing this for me...


0-10 in column A. Add $2 and multiply by 1.03 to give me a value in

column B.

10.01-50 in column A. Add $5 and multiply by 1.03 to give me a value in
column B.

50.01-100 in column A. Add $8 and multiply by 1.03 to give me a value in
column B.

100.01-225 in column A. Add $10 and multiply buy 1.03 to give me a value

in
column B.

225.01-400 in column A. Add $15 and multiply buy 1.03 to give me a value

in
column B.

400.01-575 in column A. Add $20 and multiply buy 1.03 to give me a value

in
column B.

575.01-700 in column A. Add $30 and multiply buy 1.03 to give me a value

in
column B.

700.01-1000 in column A. Add $40 and multiply buy 1.03 to give me a value
in column B.

1000.01-1550 in column A. Add $50 and multiply buy 1.03 to give me a

value
in column B.

1550.01 and over in column A. Multiply by 1.06.

Thanks in advance...again!





--
Thanks :) Lori


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Need formula

Create a 2 column table with the left column containing the lower boundaries
of each interval and the right column containing the added value:

........D...............E
1.....0...............2
2....10.01.........5
3....50.01.........8
4....100.01.......10
5....225.01.......15
6....400.01.......20
7....575.01.......30
8....700.01.......40
9....1000.01.....50

You don't need the last boundary (1550). We'll take care of that in this
formula:

=IF(COUNT(A1),IF(A11550,A1*1.06,(A1+VLOOKUP(A1,D1 :E9,2))*1.03),"")



--
Biff
Microsoft Excel MVP


"Lori" wrote in message
...
First of all...thank you all for helping me along. I finally understand
the
whole process I'm using. Unfortunately when I try to add more price
"groups"
to the formulas I was given they don't work. I thought I could figure it
out
on my own if someone got me started, but obviously I can't :o

If someone doesn't mind doing this for me...


0-10 in column A. Add $2 and multiply by 1.03 to give me a value in
column B.

10.01-50 in column A. Add $5 and multiply by 1.03 to give me a value in
column B.

50.01-100 in column A. Add $8 and multiply by 1.03 to give me a value in
column B.

100.01-225 in column A. Add $10 and multiply buy 1.03 to give me a value
in
column B.

225.01-400 in column A. Add $15 and multiply buy 1.03 to give me a value
in
column B.

400.01-575 in column A. Add $20 and multiply buy 1.03 to give me a value
in
column B.

575.01-700 in column A. Add $30 and multiply buy 1.03 to give me a value
in
column B.

700.01-1000 in column A. Add $40 and multiply buy 1.03 to give me a value
in column B.

1000.01-1550 in column A. Add $50 and multiply buy 1.03 to give me a
value
in column B.

1550.01 and over in column A. Multiply by 1.06.

Thanks in advance...again!





--
Thanks :) Lori



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



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