Create a List Based Data from another Tab

Papa_Don

New Member
Joined
Jan 22, 2015
Messages
38
Group,

I have a table (Sheet1) in Excel that looks something like this:

NumbersType
123TK
123TQ
123HK
208TK
208TQ
208HQ
208HK
208DK
208DQ

<tbody>
</tbody>

On a separate tab (Sheet2) within the same spreadsheet, I want to be able to enter the "Number" and return each of the available "Types". By this I'm saying I want it to return something that looks like this:

Number ID123
TK
TQ
HK

<tbody>
</tbody>

Number ID208
TK
TQ
HQ
HK
DK
DQ

<tbody>
</tbody>

If I were building a list box, I know how to do that. However finding the data based on the Number ID and putting the available types below it is something I've not done.

Can you offer some suggestions as to how?

Thanks,

Don
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
something like...

Excel 2012
ABCDE
1NumbersTypeNumber ID123
2123TKTK
3123TQTQ
4123HKHK
5208TK
6208TQ
7208HQ
8208HK
9208DK
10208DQ

<tbody>
</tbody>
Sheet1

Array Formulas
CellFormula
E2{=IFERROR(INDEX(Sheet1!$B$2:$B$10,SMALL(IF(Sheet1!$A$2:$A$10=$E$1,ROW(Sheet1!$A$2:$A$10)-ROW(Sheet1!$A$2)+1),ROWS($E$2:E2))),"")}

<tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,461
Messages
6,124,952
Members
449,198
Latest member
MhammadishaqKhan

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