copying VLOOKUP w/o changing formula

G

Guest

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?
 
T

T. Valko

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
 
D

Dave Peterson

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top