Thread: Formulas
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Elkar Elkar is offline
external usenet poster
 
Posts: 964
Default Formulas

Use absolute cell referencing. Like this:

=VLOOKUP(K4,$A$3:$C$714,3,FALSE)

The $ symbol locks the cell reference so that it won't increment when copied.

$A3 would lock just the column
A$3 would lock just the row
$A$3 locks both row and column

HTH,
Elkar


"Copying VLOOKUP formulas" wrote:

I have the following formula inserted into a cell. I know it works because
it returns the correct value.

=VLOOKUP(K4,A3:C714,3,FALSE)

I now need to copy this same formula in the same column over about 700 rows
of data. The "K4" will obviously change since that's the value I'm looking
for, but how do I lock the range table, i.e. "A3:C714", so it won't increase
when I copy the formulas down? Also, is there something I need to do in
Paste Special to make the formula work in the other rows? I've tried
everything and I can't get the formula to copy correctly. I obviously don't
want to retype it 700 times.

Any help would be GREATLY appreciated.