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! Get ahead of the game and start preparing now! Learn more
I am trying to get get my visualization to not show any data if one of the category breakdown value is < 5.
For an example, below is my table.
Aggregate count values are below
Upon selection of other filters, when the table value becomes below (one of the category values <= 5), I do not want the table to display any values at all.
Solved! Go to Solution.
@Gabry ,
below worked
Measure = MINX(SUMMARIZE(ALLSELECTED('Table'),'Table'[Categori],"RowC", COUNT('Table'[ID])),[RowC])
Hello,
not sure to have understood properly.
Measure = minx(summarize(table, category, "Rowcount", count(id)), [Rowcount])
Then in the filter of the visual you put this measure and you select >= 5
I think this should work, let me know, bye
@Gabry , With this only the category value which has less than 5, value gets filtered out. I wanted all the data to not show.
Below is the table with you solution
Only the category A gets filtered out, I wanted if one of the category count is <=5, nothing should show like below
ok adjust like this
Man if you want to use filter on the same table you need to adjust the measure like this
Only if there's one category <5.
Tested again and it works:
@Gabry ,
below worked
Measure = MINX(SUMMARIZE(ALLSELECTED('Table'),'Table'[Categori],"RowC", COUNT('Table'[ID])),[RowC])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 19 | |
| 13 | |
| 10 |