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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a dashboard where I would like %age measure to be used as filter. But looks like PowerBI doesn't allow measure as filter. If I try to create this as column then use as filter then %age calculation goes wrong as it aggregates the data on the dashbboard. Can someone suggest how can this be resolved?
Solved! Go to Solution.
Hi, @OmPrakashMahto
Measure can be used as a filter, but you need to convert the method.
Sample data:
Measurefilter = IF([Measure%]>0.5,1,0)
Hope this method helps you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @OmPrakashMahto
Measure can be used as a filter, but you need to convert the method.
Sample data:
Measurefilter = IF([Measure%]>0.5,1,0)
Hope this method helps you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
yes, filter takes columns but not measure. what code do you have for the the measure? it needs to be changed lightly for columns.