Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. 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.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 22 | |
| 10 | |
| 10 | |
| 7 | |
| 5 |