- Jun 2, 2009
- 488
- 13
- 81
I've got a price sheet and a bunch of preconfigured options, and I'm tired of having to input a cell reference for both the item name and the price.
CONFIG 1
A B
item1 $33
item2 $45
item3 $11
CONFIG 2
A B
item9 $59
item7 $65
item5 $49
Etc. It's a pretty big sheet.
Right now there are just under 100 total items to select from and each of about 10 configs has 4-10 items.
What I'd like is when I choose the reference cell for a given item (=E45), the price updates automatically based on that. So I set A3 to =E45, and cell B3 becomes =E46.
I know it can be done based on reading the cell text and doing string manipulation but that seems... clunky.
Also looked into the INDIRECT and OFFSET functions, but they don't resolve the cell reference: I use OFFSET(A3,0,1) in B3 and it gives me a circular function error.
Any ideas?
CONFIG 1
A B
item1 $33
item2 $45
item3 $11
CONFIG 2
A B
item9 $59
item7 $65
item5 $49
Etc. It's a pretty big sheet.
Right now there are just under 100 total items to select from and each of about 10 configs has 4-10 items.
What I'd like is when I choose the reference cell for a given item (=E45), the price updates automatically based on that. So I set A3 to =E45, and cell B3 becomes =E46.
I know it can be done based on reading the cell text and doing string manipulation but that seems... clunky.
Also looked into the INDIRECT and OFFSET functions, but they don't resolve the cell reference: I use OFFSET(A3,0,1) in B3 and it gives me a circular function error.
Any ideas?