March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all 🙂
I have a column in a table that shows the "resolving group" of a series of "tickets"
RESOLVING GROUP |
Primary Team |
Other Assignment Groups |
Other Assignment Groups |
Primary Team |
Primary Team |
Primary Team |
I would like to add a card visual that shows the percentage of tickets resolved by the "Primary Team" compared to "Other Assignment Groups" based on this column. Note that it is just the two groups listed, not Primary and a bunch of other names groups.
Is this possible to do in a measure? If so, what should I use?
Or do I need to take an alternative step?
Thanks in adv for your help on this!
Solved! Go to Solution.
Hi @Natasha93
please try
=
VAR PrimaryTeamTickets =
CALCULATE (
DISTINCTCOUNT ( TabeName[Ticket no.] ),
TabeName[Resolving Group] = "Primary Team"
)
VAR AllTickets =
DISTINCTCOUNT ( TabeName[Ticket no.] )
RETURN
DIVIDE ( PrimaryTeamTickets, AllTickets )
Hi @Natasha93
please try
=
VAR PrimaryTeamTickets =
CALCULATE (
DISTINCTCOUNT ( TabeName[Ticket no.] ),
TabeName[Resolving Group] = "Primary Team"
)
VAR AllTickets =
DISTINCTCOUNT ( TabeName[Ticket no.] )
RETURN
DIVIDE ( PrimaryTeamTickets, AllTickets )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
106 | |
98 | |
65 | |
54 |