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.
Hi,
I have the below visual and I want to filter it to show those % attendance above or equal to 30%.
I tried implementing a visual filter as follows:
But the visual comes back empty.
How do i achieve this?
Solved! Go to Solution.
Hi @mp390988
Visual-level filters based on a measure in a Matrix visual are unfortunately pretty unintuitive.
They work by:
A safer way to get the result you want would be to create a secondary measure, and use it in the visual instead:
% attendance at least 30% =
VAR Threshold = 0.3
VAR PercentAttendance = [% attendance]
VAR Result =
IF ( PercentAttendance >= Threshold, PercentAttendance )
RETURN
Result
This will blank out any values (at the cell level) that are below the 30% threshold.
A side effect is that any rows/columns that are entirely blank as a result will be hidden. You can enable "Show items with no data" if you would like to display blank rows/columns.
Does this work as expected?
Hi @mp390988
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.
Thank you.
Hi @mp390988
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi @mp390988
Could you please confirm if your query have been resolved the solution provided by @OwenAuger ? If they have, kindly mark the helpful response and accept it as the solution. This will assist other community members in resolving similar issues more efficiently.
Thank you
Hi @mp390988
Visual-level filters based on a measure in a Matrix visual are unfortunately pretty unintuitive.
They work by:
A safer way to get the result you want would be to create a secondary measure, and use it in the visual instead:
% attendance at least 30% =
VAR Threshold = 0.3
VAR PercentAttendance = [% attendance]
VAR Result =
IF ( PercentAttendance >= Threshold, PercentAttendance )
RETURN
Result
This will blank out any values (at the cell level) that are below the 30% threshold.
A side effect is that any rows/columns that are entirely blank as a result will be hidden. You can enable "Show items with no data" if you would like to display blank rows/columns.
Does this work as expected?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
67 | |
51 | |
38 | |
26 |
User | Count |
---|---|
89 | |
52 | |
45 | |
39 | |
38 |