how to Return multiple matching values from another table

Hi . Can you please suggest a solution to solve this ?

table : categories 
idtagtag_ids
1man102
2women103
3child105

I would like to end up with:

 

table : product  
id producttagtag_ids
1Aman|women102|103
2Bman|women|child102|103|105
3Cwoman103

I tried LOOKUP formula but it works  to return only one value , what about multiple values splited by "|" sign ??

Thank you

0 1 136
1 REPLY 1

So I assume these are 2 seperate tables...

In the second table you're going to have to setup [Tag] and [Tag_IDs] as ENUMLIST type columns.  Then have a formula for [Tag_IDs] as

Select(Table1[Tag_IDS],IN([Tag],[_ThisRow].[Tag])

Simon, 1minManager.com 

Top Labels in this Space