Forum Discussion
MadhavDholakia
1 year agoHelper I
Measure as Values in Matrix
Hello, I have a data set from ITSM system with fileds including TicketID, Queue, Analyst, Type, Resolution Time in Bhrs (Minutes) and FCR (First Contact Resolution), Resolved Date. A measure ...
suparnababu8
1 year agoSuper User
Try this
FCR % =
CALCULATE(DIVIDE(
COUNTROWS(FILTER(Tickets, [FCR] = "Yes" && [Resolution Time in Bhrs] <= 30)),
COUNTROWS(FILTER(Tickets, [Type] = "Incident")),0
),
ALL(Tickets[Queue]))- MadhavDholakia1 year agoHelper I
thanks suparnababu8 - I am still getting the same numbers - I think there is some issue with underlying data then? Let me share sample data in some time.