pulling all information from a list

kns0029

New Member
Joined
Aug 29, 2016
Messages
10
Hi there I am in need of pulling all items from a table that have the same item listed in another column to a seperate page.
mikecheeseburger
katiepickles
aaroncheeseburger
tylerfrench fries
elliepickles
taylorcheeseburger
kyleyams

<tbody>
</tbody>


<tbody></tbody>

So if the above was my table which is located on one tab, Tab A. I also have another tab, Tab B, with a drop down list with the items in column 2 from the above list. I want a new table to lookup the item chosen in the dropdown list from Tab B and repopulate all the people who have the item on a new table in tab B.

Help!!
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
a simple macro that, say, looked for cheeseburger in second column of tab A
every time found copy the name next to it to tab b

would this be acceptable ?
 
Upvote 0
I was Hoping to Avoiding using macros/writing VBA just because we ran into issues the way we store and utilize these files.
 
Upvote 0
How about this? Source: How To Return Multiple Match Values in Excel Using INDEX-MATCH or VLOOKUP


Excel 2010
AB
1FoodName
2cheeseburgermike
3pickleskatie
4cheeseburgeraaron
5french friestyler
6picklesellie
7cheeseburgertaylor
8yamskyle
Tab A



Excel 2010
AB
1FoodCheeseburger
2Namesmike
3aaron
4taylor
5
6
Tab B
Cell Formulas
RangeFormula
B2{=IF(ISERROR(INDEX('Tab A'!$A$1:$B$8,SMALL(IF('Tab A'!$A$1:$A$8=$B$1,ROW('Tab A'!$A$1:$A$8)),ROW($A1:$B1)),2)),"",INDEX('Tab A'!$A$1:$B$8,SMALL(IF('Tab A'!$A$1:$A$8=$B$1,ROW('Tab A'!$A$1:$A$8)),ROW($A1:$B1)),2))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0

Forum statistics

Threads
1,215,695
Messages
6,126,266
Members
449,308
Latest member
VerifiedBleachersAttendee

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