Forum Discussion
Anonymous
6 years agoNot applicable
Return all rows for which column contains specific keyword
I have a table with Title column. I need to return all rows for which Title Contains "Keyword". Do I need to return a new CALCULATETABLE for this? Please help me with DAX ? Thanks
- Anonymous6 years ago
JarroVGIT
Resident Rockstar
6 years agoYou can use this DAX filter expression:
FILTER(Table, CONTAINSSTRING(Table[Column], "Keyword" = TRUE)
Kind regards
Djerro123
-------------------------------
If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.
Keep those thumbs up coming! 🙂