Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to copy the following VLOOKUP:
=VLOOKUP(B11,'1'!E2:F11,2,FALSE) and paste it down an entire column consisting of 1000 cells, but cell range of "E2:F11" changes down the column (ex. E3:F12). I WANT B11 to change accordingly, but how do I paste this without having to change the E:F cell ranges back to E2:F11 on each cell that is pasted? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Make the table references absolute:
=VLOOKUP(B11,'1'!E$2:F$11,2,FALSE) The $ signs will keep the rows from changing when copied. Biff "rldjda" wrote in message ... I want to copy the following VLOOKUP: =VLOOKUP(B11,'1'!E2:F11,2,FALSE) and paste it down an entire column consisting of 1000 cells, but cell range of "E2:F11" changes down the column (ex. E3:F12). I WANT B11 to change accordingly, but how do I paste this without having to change the E:F cell ranges back to E2:F11 on each cell that is pasted? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try:
=VLOOKUP(B11,'1'!$e$2:$F$11,2,FALSE) The $ signs tells excel not to adjust that row or column when copying or cutting then pasting. rldjda wrote: I want to copy the following VLOOKUP: =VLOOKUP(B11,'1'!E2:F11,2,FALSE) and paste it down an entire column consisting of 1000 cells, but cell range of "E2:F11" changes down the column (ex. E3:F12). I WANT B11 to change accordingly, but how do I paste this without having to change the E:F cell ranges back to E2:F11 on each cell that is pasted? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lookup Data in two seperate Spreadsheets | Excel Worksheet Functions | |||
copying a formula | Excel Discussion (Misc queries) | |||
Vlookup formula Excel version 2002 | Excel Discussion (Misc queries) | |||
Copying a formula and changing ONE value... | Excel Worksheet Functions | |||
How do I use Range Names listed in a VLookup table in a formula? | Excel Worksheet Functions |