Forum Discussion
Measure value will filter measure in visual
- 3 years ago
Hi Anonymous ,
According to your description, when the measure checher is 1, you want to filter the visual for user activity to show active rows only. Here's my solution.
Create a measure:
Flag = IF ( [checker] = 1 && MAX ( example[user activity] ) = "active", 1, 0 )Put the measure in the visual filter and select its value to1.
After apply filter, get the result.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
That technically is not filtering the table I want to filter, since there is connection between the measure and the visual table columns
Anonymous That greatly depends. You haven't provided any sample data or how your visual is configured so it's impossible for me to know. I use this technique all the time, it is called a Complex Selector: https://community.powerbi.com/t5/Quick-Measures-Gallery/The-Complex-Selector/m-p/1116633#M534