Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

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...
  • Anonymous's avatar
    Anonymous
    4 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.