Pull all needed data from sheet 1 to sheet 2 / dropdown / based on 1 column in sheet 1

lotrev

New Member
Joined
Nov 15, 2019
Messages
6
Hi!
I have sheet with data for different people. I want to make some kind of drop down function in sheet 2, which looks on column B with people names in sheet 1.
Main thing is I want to get many cell data from specified row(from dropdown) as well. And data goes to different locations in sheet2.
Long story short: I need to get this rows data and make like an overview paper in sheet2, so I can print it.

Sheet1
NAME1 DATE HEIGHT VALUE1 VALUE2 ... VALUE20

Sheet2
Dropdown NAME1
NAME2

then


NAME1 DATE

VALUE1 HEIGHT




VALUE5 VALUE6 VALUE7

Something like that
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
something like this?

Book1
ABCDEFGHIJ
1Value 1Value 2Value 3Value 4Value 5Value 6Value 7Value 8Value 9
2Name 1Data 11Data 12Data 13Data 14Data 15Data 16Data 17Data 18Data 19
3Name 2Data 21Data 22Data 23Data 24Data 25Data 26Data 27Data 28Data 29
4Name 3Data 31Data 32Data 33Data 34Data 35Data 36Data 37Data 38Data 39
5Name 4Data 41Data 42Data 43Data 44Data 45Data 46Data 47Data 48Data 49
6Name 5Data 51Data 52Data 53Data 54Data 55Data 56Data 57Data 58Data 59
7Name 6Data 61Data 62Data 63Data 64Data 65Data 66Data 67Data 68Data 69
8Name 7Data 71Data 72Data 73Data 74Data 75Data 76Data 77Data 78Data 79
9Name 8Data 81Data 82Data 83Data 84Data 85Data 86Data 87Data 88Data 89
10Name 9Data 91Data 92Data 93Data 94Data 95Data 96Data 97Data 98Data 99
11Name 10Data 101Data 102Data 103Data 104Data 105Data 106Data 107Data 108Data 109
12
13
14Name 4
15Value 1Data 41
16Value 2Data 42
17Value 3Data 43
18Value 4Data 44
19Value 5Data 45
20Value 6Data 46
21Value 7Data 47
22Value 8Data 48
23Value 9Data 49
Sheet8
Cell Formulas
RangeFormula
B15:B23B15=INDEX($B$2:$J$11,MATCH($A$14,$A$2:$A$11,0),MATCH(A15,$B$1:$J$1,0))
 
Upvote 0
The data sheet looks like this
2020-01-09 (2).png


And I want to select person for printable version
2020-01-09.png


For now I found solution in google sheets. I use this formula to extract needed persons data to Sheet1:
=array_constrain(QUERY(ImportRange("1mdQT92olBcQWWyhEwbekj0iDTHwTdlS-iA4SURHOFZI","Testi!A:BB" ),"select * where Col1=1",0),3,52)
2020-01-09 (1).png


But it doesn't work in excel.
 
Upvote 0

Forum statistics

Threads
1,214,952
Messages
6,122,457
Members
449,083
Latest member
Ava19

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