VLookup Data in two Sheets

H

HD

How do I look up vlookup with two sheets one Sheet 1 has everything and in
Sheet 2 I need the description to populate

Sheet 1
Item Description
Bike Bike prod
Train New Train Red
Dog Big Brown dog

Need the vlookup
Sheet 2
Item Description
Bike vlookup from sheet 1 to get the description
Dog vlookup from sheet 1 to get the description
 
R

RonaldoOneNil

In B column on Sheet 2

=VLOOKUP(A1,Sheet1!A1:B4,2,FALSE)

Alter the ranges and cell values as appropriate and then copy formula down
 
S

ShaneDevenshire

Hi,

Try something like

=VLOOKUP(A2,Sheet1!A:B,2,)

or for a smaller lookup table

=VLOOKUP(A2,Sheet1!A$2:B$100,2,)

The $ signs are important
 

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