Forum Discussion
Anonymous
6 years agoNot applicable
Use column value with operator IN
Hi all, In order to use a the operator "IN" in a DAX measure I need a list after that operator. I am trying to use a string stored in my model as a list. How could I convert a string into a list...
- 6 years ago
Hi Anonymous,
Have you tried using FIND or Search instead of IN?
FIND(<find_text>, <within_text>[, [<start_num>][, <NotFoundValue>]])
FIND is case-sensitive.
SEARCH(<find_text>, <within_text>[, [<start_num>][, <NotFoundValue>]])
This function does not check uppercase and lowercase letters.
Anonymous
6 years agoNot applicable
HI Anonymous ,
Please refer to this article from SQL BI.
https://www.sqlbi.com/articles/the-in-operator-in-dax/
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)