Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm working on a two worksheets.
The formula is as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE;57;0) I want to copy the formula to one cell on the right and turns as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BF;57;0) My problem is that the coll index number does not change... that means I have to change it manually for 50 collumns. PLEASE HELP |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=VLOOKUP($A92;
'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE; column('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!be:be); 0) this will react to insertion/deletion of columns in that price list worksheet. But you may want to consider using =index(match()). =index('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!BE:BE; match($a92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$a:$a;0) Debra Dalgleish has some notes: http://www.contextures.com/xlFunctions03.html (for =index(match())) ps. watch out for typos. I use commas for my list separator. I tried to change them to semicolons, but may have missed some. I.C.E. wrote: I'm working on a two worksheets. The formula is as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE;57;0) I want to copy the formula to one cell on the right and turns as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BF;57;0) My problem is that the coll index number does not change... that means I have to change it manually for 50 collumns. PLEASE HELP -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
sorry Dave,
but it doesn't work either of the two ways. In the first one, does not bring to the cell the right data. "Dave Peterson" wrote: =VLOOKUP($A92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE; column('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!be:be); 0) this will react to insertion/deletion of columns in that price list worksheet. But you may want to consider using =index(match()). =index('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!BE:BE; match($a92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$a:$a;0) Debra Dalgleish has some notes: http://www.contextures.com/xlFunctions03.html (for =index(match())) ps. watch out for typos. I use commas for my list separator. I tried to change them to semicolons, but may have missed some. I.C.E. wrote: I'm working on a two worksheets. The formula is as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE;57;0) I want to copy the formula to one cell on the right and turns as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BF;57;0) My problem is that the coll index number does not change... that means I have to change it manually for 50 collumns. PLEASE HELP -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
When you look at the new formula (after copy|pasting), didn't that BE:BE change
to BF:BF? In both formulas????? Maybe you have calculation set to manual? I.C.E. wrote: sorry Dave, but it doesn't work either of the two ways. In the first one, does not bring to the cell the right data. "Dave Peterson" wrote: =VLOOKUP($A92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE; column('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!be:be); 0) this will react to insertion/deletion of columns in that price list worksheet. But you may want to consider using =index(match()). =index('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!BE:BE; match($a92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$a:$a;0) Debra Dalgleish has some notes: http://www.contextures.com/xlFunctions03.html (for =index(match())) ps. watch out for typos. I use commas for my list separator. I tried to change them to semicolons, but may have missed some. I.C.E. wrote: I'm working on a two worksheets. The formula is as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE;57;0) I want to copy the formula to one cell on the right and turns as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BF;57;0) My problem is that the coll index number does not change... that means I have to change it manually for 50 collumns. PLEASE HELP -- Dave Peterson -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ιt turns to BF:BF but it does not bring in the right data. Instead of the
content of the specific cells, it brings in the "lookup value". Weird ha? "Dave Peterson" wrote: When you look at the new formula (after copy|pasting), didn't that BE:BE change to BF:BF? In both formulas????? Maybe you have calculation set to manual? I.C.E. wrote: sorry Dave, but it doesn't work either of the two ways. In the first one, does not bring to the cell the right data. "Dave Peterson" wrote: =VLOOKUP($A92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE; column('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!be:be); 0) this will react to insertion/deletion of columns in that price list worksheet. But you may want to consider using =index(match()). =index('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!BE:BE; match($a92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$a:$a;0) Debra Dalgleish has some notes: http://www.contextures.com/xlFunctions03.html (for =index(match())) ps. watch out for typos. I use commas for my list separator. I tried to change them to semicolons, but may have missed some. I.C.E. wrote: I'm working on a two worksheets. The formula is as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE;57;0) I want to copy the formula to one cell on the right and turns as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BF;57;0) My problem is that the coll index number does not change... that means I have to change it manually for 50 collumns. PLEASE HELP -- Dave Peterson -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sorry, I don't have another guess.
I.C.E. wrote: Ιt turns to BF:BF but it does not bring in the right data. Instead of the content of the specific cells, it brings in the "lookup value". Weird ha? "Dave Peterson" wrote: When you look at the new formula (after copy|pasting), didn't that BE:BE change to BF:BF? In both formulas????? Maybe you have calculation set to manual? I.C.E. wrote: sorry Dave, but it doesn't work either of the two ways. In the first one, does not bring to the cell the right data. "Dave Peterson" wrote: =VLOOKUP($A92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE; column('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!be:be); 0) this will react to insertion/deletion of columns in that price list worksheet. But you may want to consider using =index(match()). =index('[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!BE:BE; match($a92; '[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$a:$a;0) Debra Dalgleish has some notes: http://www.contextures.com/xlFunctions03.html (for =index(match())) ps. watch out for typos. I use commas for my list separator. I tried to change them to semicolons, but may have missed some. I.C.E. wrote: I'm working on a two worksheets. The formula is as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BE;57;0) I want to copy the formula to one cell on the right and turns as follows: =VLOOKUP($A92;'[Q306 MME Pricing Aug 06 CUSTOMER COPY v5 (2).xls]PRICE LIST'!$A:BF;57;0) My problem is that the coll index number does not change... that means I have to change it manually for 50 collumns. PLEASE HELP -- Dave Peterson -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vlookup will not reference a validation/drop down box | Excel Discussion (Misc queries) | |||
VLOOKUP Limitations | Excel Worksheet Functions | |||
Convert VLOOKUP to absolute cell reference | Excel Discussion (Misc queries) | |||
make a vlookup using a variable path | Excel Worksheet Functions | |||
vlookup data hidden within worksheet | Excel Worksheet Functions |