Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello amazing community!
Does anyone know if it is possible to create a mesure which will filter the column 'purpose' and return only those rows which contain exact wording, for example, 'design' as on the below screenshot?
Many thanks for any formula suggestions!
Anna
Solved! Go to Solution.
Finally, only this formula worked:
Finally, only this formula worked:
Hi @Anonymous
is it only one key word or you have list of key words placed in a separate table?
If so then you can place the following measure in the filter pane of the table visual, select "is not blank" then apply the filter.
FilterMeasure =
COUNTROWS (
FILTER (
CROSSJOIN ( VALUES ( 'Table'[Purpose] ), VALUES ( List[KeyWord] ) ),
CONTAINSSTRING ( 'Table'[Purpose], List[KeyWord] )
)
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |