Multiple Columns Using VLOOKUP

hardeep.kanwar

Well-known Member
Joined
Aug 13, 2008
Messages
691
Hi! All

I have data in Sheet 1 i.e A1:A20000 like mentioned Below

Its a code

5848606
9659285
8100949
4846771
7201303

And in Sheet2 i have master Sheet. Data Range A1:Z45000

Now i want to Pickup the Data From Sheet 2 i.e B2 to Z2 to Sheet1
Right now i am using =VLOOKUP(A:A,Sheet2!A:B,2,false)
It Work Fine for me .

Is it possible to use only one Formula

Or i have to type one by one Vlookup Formula to pickup data from column in
sheet2 Like ::mad:

VLOOKUP(A:A,Sheet2!A:B,2,false)
VLOOKUP(A:A,Sheet2!A:C,3,false)
VLOOKUP(A:A,Sheet2!A:D,4,false)
VLOOKUP(A:A,Sheet2!A:E,5,false)
And so on

Thanks in Advance

Hardeep kanwar
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try:
=VLOOKUP(A:A,Sheet2!A:Z,COLUMN(),FALSE)
assuming that you are punching the first formula in B1 of Sheet1
 
Upvote 0
Is the data on Sheet2 sorted in ascending order on column A? If that's the case, you can set up a faster scheme for retrieval.

Otherwise:

Sheet1

B1, copied down:

=MATCH(A1,Sheet2!A:A,0)

C1, copied across and down:

=IF(ISNUMBER($B1),INDEX(Sheet2!B:B,$B1),"")
 
Upvote 0

Forum statistics

Threads
1,214,570
Messages
6,120,294
Members
448,953
Latest member
Dutchie_1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top