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
So I have a column chart that gives me a count of items based on multiple different fields in the axis. What I want to do is flip this data so that I can see the count of items where these data fields don't apply. If someone has a suggestion please let me know. Thanks in advance and let me know if there is any additional information that I need to provide. Essentially I want the opposite of my data.
@Anonymous So like this? Inverse Aggregator - Microsoft Power BI Community
So each name would pop up in multiple rows. I would need to create something that can filter out names that contain each one of these values. So in this example if I wanted to show the count of names that don't relate to value 1 then I would get 1 name. In the case of this table it would only be name:2345. I should be able to show this data in a visual or table.
| name | data values |
1234 | value 1 |
| 1234 | value 2 |
| 1234 | value 3 |
| 2345 | value 2 |
| 2345 | value 3 |
| 2345 | value 4 |
@Anonymous So more like: Inverse Selector - Microsoft Power BI Community
Let's see:
Measure =
VAR __SelectedNames = DISTINCT('Table'[name])
VAR __AllNames = DISTINCT(ALL('Table'[name]))
RETURN
COUNTROWS(EXCEPT(__AllNames,__SelectedNames))
@Greg_Deckler Do I still need a second table for this measure? I'm trying to make the comparison between this measure and the link you sent me. The link looks like exactly what I need.
@Anonymous Probably not, would have to actually test it. But the ALL should get rid of the slicer filter context and so you *should* be able to get away with a single table.
I tried it and didn't get the correct result. I think what I really need to do is create a new column.
@Anonymous Would ned to see sample data.
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.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 8 | |
| 7 | |
| 7 |