Forum Discussion
Anonymous
4 years agoNot applicable
Finding substring with multiple values
Similar problems have been answered before but the solutions are not quite working in my case. I'm relatively new to DAX, so not sure if this is easily solvable. My main data source is quite larg...
- Anonymous4 years ago
Hi Anonymous ,
Please use the following DAX formula to create a calculated column:
Column =IF( SUMX(MatchList, FIND( UPPER(MatchList[Keyword]), UPPER(Companies[Company]) ,,0 ) ) > 0, “YES!”, “Probably Not” )Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi Anonymous ,
Please use the following DAX formula to create a calculated column:
Column =IF(
SUMX(MatchList,
FIND(
UPPER(MatchList[Keyword]),
UPPER(Companies[Company])
,,0
)
) > 0,
“YES!”,
“Probably Not”
)
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.