Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
New to Power BI and this forum.
Not sure if this was supposed to ask this question in this group or the visuals group.
I have multiple employees in a employee table that shows what team they belong to. I want to have a card on an employee dashboard that shows the percentage of tickets they have completed based off the total tickets that team has completed. The percentage will show on the card based off who is selected in the slicer.
Slicer will have each employees name from all teams
The [Employee Table] has more than just these two columns but is simplified for this post
The [Ticket Table] has the tickets assigned to each of the employees:
Desired result will be a card that shows the percentage of employee's tickets against their respective team's tickets based on whoever is selected in the slicer
Example:
If Bob is selected, the card will show 40%
If Larry is selected, the card will show 60%
etc.
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
% ticket complete: =
VAR _ticketbyname =
COUNTROWS ( VALUES ( ticket[ticket#] ) )
VAR _ticketbyteam =
CALCULATE (
COUNTROWS ( VALUES ( ticket[ticket#] ) ),
ALL ( employee[name] ),
VALUES ( employee[team] )
)
RETURN
IF (
HASONEVALUE ( employee[name] ),
DIVIDE ( _ticketbyname, _ticketbyteam ),
"select name"
)
Hi,
Please check the below picture and the attached pbix file.
% ticket complete: =
VAR _ticketbyname =
COUNTROWS ( VALUES ( ticket[ticket#] ) )
VAR _ticketbyteam =
CALCULATE (
COUNTROWS ( VALUES ( ticket[ticket#] ) ),
ALL ( employee[name] ),
VALUES ( employee[team] )
)
RETURN
IF (
HASONEVALUE ( employee[name] ),
DIVIDE ( _ticketbyname, _ticketbyteam ),
"select name"
)
User | Count |
---|---|
25 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
25 | |
12 | |
11 | |
10 | |
6 |