Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
You 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! 🙂
Proud to be a Super User!
Proud to be a Super User!
Hi @Anonymous ,
can't you use an advance filter?
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @mwegener I can use the visual filter but then I need this values to do more calculation on it like count, filter by type etc.
I would have to put the same filter on all those variations for different goals.
I prefer something like a CalculatedTable that contains those filtered values and then I can just refer the table for visual.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.