excelisfun array multiple lookup in one cell

dmj120

Active Member
Joined
Jan 5, 2010
Messages
308
Office Version
  1. 365
  2. 2019
  3. 2010
:banghead::banghead::banghead:

I came across an excelisfun video a while ago in which a lookup was used that showed all values in one cell. VERY similar to the textjoin(), but it worked in 2010.

....and of course, I can't find it, nor do I remember what I searched when I stumbled upon it....

I have a two column table, column A has names, column B has PO#s. I want to have a summary in which all the PO#s display in one cell.

Example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Selection
[/TD]
[TD]PO Numbers
[/TD]
[/TR]
[TR]
[TD]Josh
[/TD]
[TD]100, 150, 200
[/TD]
[/TR]
</tbody>[/TABLE]


[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Name
[/TD]
[TD]PO Number
[/TD]
[/TR]
[TR]
[TD]Josh
[/TD]
[TD]100
[/TD]
[/TR]
[TR]
[TD]Jim
[/TD]
[TD]99999
[/TD]
[/TR]
[TR]
[TD]Josh
[/TD]
[TD]150
[/TD]
[/TR]
[TR]
[TD]Heather
[/TD]
[TD]88888
[/TD]
[/TR]
[TR]
[TD]Josh
[/TD]
[TD]200
[/TD]
[/TR]
</tbody>[/TABLE]


Does anyone know what I can search to find the video, or give me a starting point??

Thanks!
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
you can try with PowerQuery (free add-in for 2010)

[Table="width:, class:head"]
[tr=bgcolor:#FFFFFF][td=bgcolor:#5B9BD5]Name[/td][td=bgcolor:#5B9BD5]PO Number[/td][td][/td][td=bgcolor:#70AD47]Name[/td][td=bgcolor:#70AD47]PO Number[/td][/tr]

[tr=bgcolor:#FFFFFF][td=bgcolor:#DDEBF7]Josh[/td][td=bgcolor:#DDEBF7]
100​
[/td][td][/td][td=bgcolor:#E2EFDA]Josh[/td][td=bgcolor:#E2EFDA]100, 150, 200[/td][/tr]

[tr=bgcolor:#FFFFFF][td]Jim[/td][td]
99999​
[/td][td][/td][td]Jim[/td][td]99999[/td][/tr]

[tr=bgcolor:#FFFFFF][td=bgcolor:#DDEBF7]Josh[/td][td=bgcolor:#DDEBF7]
150​
[/td][td][/td][td=bgcolor:#E2EFDA]Heather[/td][td=bgcolor:#E2EFDA]88888[/td][/tr]

[tr=bgcolor:#FFFFFF][td]Heather[/td][td]
88888​
[/td][td][/td][td][/td][td][/td][/tr]

[tr=bgcolor:#FFFFFF][td=bgcolor:#DDEBF7]Josh[/td][td=bgcolor:#DDEBF7]
200​
[/td][td][/td][td][/td][td][/td][/tr]
[/table]


Code:
[SIZE=1]// Table1
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    Group = Table.Group(Source, {"Name"}, {{"Count", each _, type table}}),
    List = Table.AddColumn(Group, "PO Number", each Table.Column([Count],"PO Number")),
    Extract = Table.TransformColumns(List, {"PO Number", each Text.Combine(List.Transform(_, Text.From), ", "), type text})
in
    Extract[/SIZE]
 
Upvote 0
A possible solution without TEXTJOIN or Macro


[TABLE="class: grid"]
<tbody>[TR]
[TD="bgcolor: #DCE6F1"][/TD]
[TD="bgcolor: #DCE6F1"]
A
[/TD]
[TD="bgcolor: #DCE6F1"]
B
[/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
1
[/TD]
[TD]
Selection​
[/TD]
[TD]
PO Numbers​
[/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
2
[/TD]
[TD]
Josh​
[/TD]
[TD]
100, 150, 200​
[/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
3
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
4
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
5
[/TD]
[TD]
Name​
[/TD]
[TD]
PO Number​
[/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
6
[/TD]
[TD]
Josh​
[/TD]
[TD]
100​
[/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
7
[/TD]
[TD]
Jim​
[/TD]
[TD]
99999​
[/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
8
[/TD]
[TD]
Josh​
[/TD]
[TD]
150​
[/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
9
[/TD]
[TD]
Heather​
[/TD]
[TD]
88888​
[/TD]
[/TR]
[TR]
[TD="bgcolor: #DCE6F1"]
10
[/TD]
[TD]
Josh​
[/TD]
[TD]
200​
[/TD]
[/TR]
</tbody>[/TABLE]


Select B2

Type in the Formula Bar this formula
=SUBSTITUTE(TRIM(CONCATENATE(IF(A6:A10=A2,B6:B10&" ","")))," ",", ")

With the mouse select the IF part (in red)

Hit F9 and you see
{"100 ";"";"150 ";"";"200 "}

Delete { and }

Hit Enter

Hope this helps

M.
 
Upvote 0
oops...

The solution above works only in Excel versions that use semicolon ; as argument separator

If your Excel version uses comma (,) as argument separator i think you need to TRANSPOSE the IF part.

Maybe this (NOT TESTED)
=SUBSTITUTE(TRIM(CONCATENATE(TRANSPOSE(IF(A6:A10=A2,B6:B10&" ",""))))," ",", ")

Highlight the red part and press F9
Delete { and }
Enter

M.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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