Forum Discussion
random_Bi_User
4 years agoFrequent Visitor
Search All Column Values in a different Column
Hi All! I have a column with dirty data - lets call it ddColumn. Some of the Rows in the ddColumn contain product groups. I would like to have a calculated column with the name of the product g...
- 4 years ago
please try
Calculated Column = MAXX ( FILTER ( VALUES ( Products[Group] ), CONTAINSSTRING ( Table1[ddcolumn], Products[Group] ) ), Products[Group] )
tamerj1
4 years agoCommunity Champion
please try
Calculated Column =
MAXX (
FILTER (
VALUES ( Products[Group] ),
CONTAINSSTRING ( Table1[ddcolumn], Products[Group] )
),
Products[Group]
)
random_Bi_User
4 years agoFrequent Visitor
Thank you very much tamerj1 it worked perfectly!