Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
79 | |
52 | |
39 | |
35 |
User | Count |
---|---|
94 | |
79 | |
51 | |
47 | |
47 |