Forum Discussion
seandillon
Jul 23, 2024Copper Contributor
xlookup multiple values
Spoiler
Hello I am trying to use a column where each cell has multiple Unique Identifiers separated by a column. in another sheet there's a column where each cell has a singular unique Identifier. I am trying to pull the products associated with the singular identifiers and bring each unique product separated by commas, into another column. I did it manually for example below. I think it should be some sort of xlookup but I can't figure it out. I need a forumla to give me column b.
2 Replies
- OliverScheurichGold Contributor
=TEXTJOIN(",",,FILTER($E$1:$E$5,ISNUMBER(SEARCH($D$1:$D$5,A1))))
If you have access to TEXTJOIN and FILTER you can apply this formula.
- seandillonCopper ContributorOliverScheurich Thank you!