Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default formula for adjusting price

can anyone help on this: lets say i have a cost for an item in c2, its
inventory age in c3, and a price column in c1. can i formula so that when i
enter 1 into age, it multiplies cost times a set amount, 2 multiplies by
another amount, 3 times another, and so one. my goal is to have new pricing
generated by entering a different age of product.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default formula for adjusting price

If you only have a "few" age variables you can use something like this:

=C2*IF(C3=1,10,IF(C3=2,15,IF(C3=3,17,0)))

If you have a lot of age variables then you should create a 2 column table
like this:

...........J..........K
1.......1..........10
2.......2..........15
3.......3..........17

Then your formula becomes:

=C2*IF(C3="",0,VLOOKUP(C3,J1:K3,2,0))

--
Biff
Microsoft Excel MVP


"jtretynski" wrote in message
...
can anyone help on this: lets say i have a cost for an item in c2, its
inventory age in c3, and a price column in c1. can i formula so that when
i
enter 1 into age, it multiplies cost times a set amount, 2 multiplies by
another amount, 3 times another, and so one. my goal is to have new
pricing
generated by entering a different age of product.



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
Help: Need Excel formula to return correct price from price history table Ian_W-at-GMail Excel Discussion (Misc queries) 5 March 21st 07 06:45 PM
Adjusting Formula Jasmine Excel Worksheet Functions 0 June 6th 06 02:24 PM
Adjusting a formula cell range Jamie Excel Discussion (Misc queries) 1 May 26th 06 05:00 PM
create a formula for price * discount* tax =final price anton Excel Discussion (Misc queries) 6 October 12th 05 07:51 PM
formula for - price times discount times tax = final price anton New Users to Excel 2 October 12th 05 01:05 PM


All times are GMT +1. The time now is 09:05 AM.

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"