Data validation by list

kennylal

Board Regular
Joined
Dec 10, 2008
Messages
72
Hello,

I have two sheets in sheet2 i have data in range (A2:C6) and a common field NAME.

I want to display data from sheet2 to sheet1 using data validation (list type) where in on sheet1 cell A2 contains the list and if i select any name from the list drop down then the respective data from sheet2 should reflect under the same fields on sheet1

Please help
Thanks
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
This should easily be achieved by a lookup on Sheet2. Are you able to post some of your data and what you expect the results to be?
 
Upvote 0
Thanks for replying.

For Example:

on Sheet2

Name A/c Branch City
Kenny 00001 XYZ XYZ
Thomas 00002 ABC ABC

On sheet1
on cell (A2) if i have name from sheet two listed via data validation (list type) or others

Name A/c Branch City
then i want cell A4, B4, C4 D4

to be updated (data should fetch (from sheet2) according to names on cell (A2) in sheet1 and display on sheet1 itself the cell reference above.

Thanks
 
Upvote 0
Hello,

I have two sheets in sheet2 i have data in range (A2:C6) and a common field NAME.

I want to display data from sheet2 to sheet1 using data validation (list type) where in on sheet1 cell A2 contains the list and if i select any name from the list drop down then the respective data from sheet2 should reflect under the same fields on sheet1

Please help
Thanks
See this...

http://contextures.com/xlFunctions02.html
 
Upvote 0
Copy formula from A4:D4

Assuming you also have headers on Sheet1 A3:D3 that match Sheet2 Headers

=INDEX(Sheet2!$A$2:$D$3,MATCH(Sheet1!$A$2,Sheet2!$A$2:$A$3,0),MATCH(Sheet1!A$3,Sheet2!$A$1:$D$1,0))

You'll obviously need to change the range references above to include your total range
 
Upvote 0

Forum statistics

Threads
1,203,456
Messages
6,055,543
Members
444,794
Latest member
HSAL

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