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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live 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.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 14 | |
| 9 | |
| 8 | |
| 7 |