Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I'm trying to count a subset of data, while ignoring only one slicer, but I can't seem to get it. I have a Service Ticket table and want to count the number of tickets for the Responsible Group (TSNA), while ignoring the slicer for Ticket Owner (I want to do this to compare the individual's performance to that of this particular group (there are other groups in the data), with all the other filters and slicers, remaining in place). I was trying to use the ALL function, but it still seems to leave the Ticket Owner slicer selection in place.
Total Service Tickets TSNA =
CALCULATE(DISTINCTCOUNT(ServiceTicket[Transaction Number]),
ALL('ServiceTicket'[Ticket Owner]),
FILTER('ServiceTicket', [Responsible Group] = "TSNA"))
The result should be 833, but is reduced down to 67 because it is counting for the slicer.
Help is appreciated.
Try this:
var Total Service Tickets TSNA =
CALCULATE(DISTINCTCOUNT(ServiceTicket[Transaction Number]), [Responsible Group] = "TSNA")
return CALCULATE(Total Service Tickets TSNA, ALLEXCEPT(ServiceTickket, [Responsible Group]))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |