A Question about LOOKUP

rowie

New Member
Joined
Oct 1, 2014
Messages
32

Sheet1 always stays the same and Sheet2 always changes.
I would like to pull info from Sheet2.
Example: C9-I9, from Sheet1, should look up for 006, in A2-A6 of Sheet2, it should grab the info from C2-I2 and place it into C9-I9.

Is this possible?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
You could use a different vlookup in each of the columns, see below.

C2: =IF(VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,3,FALSE)="","",VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,3,FALSE))
D2: =IF(VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,4,FALSE)="","",VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,4,FALSE))
E2: =IF(VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,5,FALSE)="","",VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,5,FALSE))
F2: =IF(VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,6,FALSE)="","",VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,6,FALSE))
G2: =IF(VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,7,FALSE)="","",VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,7,FALSE))
H2: =IF(VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,8,FALSE)="","",VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,8,FALSE))
I2: =IF(VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,9,FALSE)="","",VLOOKUP(Sheet1!$A2,Sheet2!$A:$I,9,FALSE))
 
Upvote 0
I would do

Sheet1 C2 filled right/down to I23

=INDEX(Sheet2!C$2:C$8,MATCH($A2,Sheet2!$A$2:$A$8,0))
 
Upvote 0

Forum statistics

Threads
1,215,324
Messages
6,124,250
Members
449,149
Latest member
mwdbActuary

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