Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi, Is there an easier way to this. Let's say I have a measure called checker and have a simple table visual which includes columns from a table called example (columns: name and user activity)
So basically if checker is equal to 1, the user activity equals all values. While if it is 0, the user activity only equals "Active"
I made a measure as a placeholder for the user activity:
Solved! Go to Solution.
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 _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous So like this?
Active checker =
IF([checker]=1,"All","Active")
Yes, but that will just return a measure value of "all" or "active", I want to filter the measure that acts like a column based on what the values are. I'm not sure if that's doable or a measure acting as a filter is doable in a table visual containing columns from a table.
@Anonymous Just put your measure in your Visual Filters in the Visual pane and filter for either "All" or "Active". For that matter, you could use your checker measure that way.
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
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.