MartinMax

New Member
Joined
Mar 14, 2014
Messages
1
Can someone guide me in the right direction: I have a master List that has 5 columns the uniqueness of one of the columns is that it is the SS Number, what I like to do is this: If I type the SS No. in a New workbook or a new sheet, is it possible to auto fill the whole row to the left and right with that information that belongs to that particular individual from that master list?. If so can you please help me on how to go about doing it.

Thanks so much for your time. :confused:
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
you can use index/match

you will need to specify the full path for a workbook and sheetname

assuming the columns are in sheet1 and you want to copy to sheet2

assuming columns are A,B,D,E,F
and the SS value is in Column D

in sheet2 you type SS value in A
to pull back A

=index(sheet1:A:A, match(a2,sheet1:D:D,0))
column B
=index(sheet1:B:B, match(a2,sheet1:D:D,0))
column C
=index(sheet1:C:C, match(a2,sheet1:D:D,0))
etc
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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