VLOOKUP tweaks needed please!

M

Meltad

I need to correct the VLOOKUP formula below, its not quite right with the
named range. The workbook is called 'mel test' on sheet 1 and contains a
named range 'name'...

=VLOOKUP($D2,[G\[mel test.xls]name",2,FALSE)
 
D

Don Guillett

I just tested this
=VLOOKUP(3,'20061101.xls'!myrange,2,0)

If no spaces in the name the ' ' should not be necessary
 
M

Meltad

Thanks - this is much better! :)

bigwheel said:
See if =VLOOKUP($D2,'G:\mel test.xls'!name,2,FALSE) will work.

Meltad said:
I need to correct the VLOOKUP formula below, its not quite right with the
named range. The workbook is called 'mel test' on sheet 1 and contains a
named range 'name'...

=VLOOKUP($D2,[G\[mel test.xls]name",2,FALSE)
 
D

Dave Peterson

I'd open that other workbook and build the formula by typing:

=vlookup($d2,
then use the mouse to point at that range
then finish up with the ,2,false)

Excel will get the syntax right.
I need to correct the VLOOKUP formula below, its not quite right with the
named range. The workbook is called 'mel test' on sheet 1 and contains a
named range 'name'...

=VLOOKUP($D2,[G\[mel test.xls]name",2,FALSE)
 
Top