Lookup and create a list

freeriding

New Member
Joined
Sep 21, 2015
Messages
22
I have 2 columns, one with names and another with numbers.

I want to extract in a continuous list the numbers that match a certain name.

(eg, if A appears 3 times, i want to have a continuous list (vertical or horizontal) with the 3 numbers that match the A)

How do i do that?

kkR4JAf.png
 
Last edited:

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi

E3=IF(E$2<>"",IFERROR(INDEX($B$2:$B$100,SMALL(IF($A$2:$A$100=E$2,ROW($B$2:$B$100)-ROW($B$2)+1),ROWS($B$2:$B2))),""),"") control+shift+enter copy across and down
 
Upvote 0
If you want the values in sorted order, you can use this non-array formula:

E3: =IFERROR(AGGREGATE(15,6,$B$2:$B$10/($A$2:$A$10=E$2),ROWS($E$3:$E3)),"")
 
Upvote 0
Thank you very much!
One more thing:
i want to retrieve the names of the first column, so that they appear in the yellow row.

How could i do that?

2VINsUE.png
 
Upvote 0
Cross posted https://www.excelforum.com/excel-general/1253875-lookup-and-create-a-list.html#post5014331

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,214,402
Messages
6,119,304
Members
448,886
Latest member
GBCTeacher

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