Forum Discussion
user180618
Helper I
3 years agoMapping columns from different tables where one has multiple delimited values
I have two tables that I would like to map together, either using a join or relationship or a lookup (not sure which is most appropriate). In Table 1 I have a column that lists English words/slang an...
- 3 years ago
Hi user180618
Please tryMatched = MAXX ( FILTER ( VALUES ( Table2[US_english] ), CONTAINSSTRING ( Table1[Word], Table2[US_english] ) ), Table2[US_english] )The MAXX shall not be required and can be removed
tamerj1
Community Champion
3 years agoHi user180618
Please try
Matched =
MAXX (
FILTER (
VALUES ( Table2[US_english] ),
CONTAINSSTRING ( Table1[Word], Table2[US_english] )
),
Table2[US_english]
)
The MAXX shall not be required and can be removed