Forum Discussion
EpicTriffid
6 years agoHelper IV
Lookup from multiple values in same column
Hi all, Stumped on this one and need some help. I'm trying to concatenate ID numbers based on combinations of units they can take. This is all currently in one table. So, we have this kin...
Greg_Deckler
6 years agoCommunity Champion
Perhaps:
IDs =
IDs1 = CONCATENATEX(FILTER('Units','Units'[Unit] = [Comb1]),[ID],", ")
IDs2 = CONCATENATEX(FILTER('Units','Units'[Unit] = [Comb2]),[ID],", ")
RETURN
IDs1 & ", " IDs2