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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi ,
is there a way of not showing figures less than 10% for example in visuals? Im looking at displaying characteristics and though individuals arent identifiable if sliced in the right way they could become so.
Thanks,
Solved! Go to Solution.
Two suggestions:
1. You can build a threshold into your measure like this
MyMeasure = var __asum = SUM(Table[Column])
return IF(__asum <0.1, BLANK(), __asum)
2. You can also put a threshold so people can never drill down to the single person level (actually they can drill down but won't see a result)
MyMeasure = IF(COUNTROWS(VALUES(Table[Person]))<5, BLANK(), SUM(Table[Column]))
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi @cathtiffin
Answers above are very helpful.
If the problem still occurs, please show more details.
for example, what does this mean?
Im looking at displaying characteristics and though individuals arent identifiable
Best Regards
Maggie
Two suggestions:
1. You can build a threshold into your measure like this
MyMeasure = var __asum = SUM(Table[Column])
return IF(__asum <0.1, BLANK(), __asum)
2. You can also put a threshold so people can never drill down to the single person level (actually they can drill down but won't see a result)
MyMeasure = IF(COUNTROWS(VALUES(Table[Person]))<5, BLANK(), SUM(Table[Column]))
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Look for the "Top N and Other" pattern.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.