Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 has been created:
Try this
FCR % =
CALCULATE(DIVIDE(
COUNTROWS(FILTER(Tickets, [FCR] = "Yes" && [Resolution Time in Bhrs] <= 30)),
COUNTROWS(FILTER(Tickets, [Type] = "Incident")),0
),
ALL(Tickets[Queue]))
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.
Hi @MadhavDholakia ,
Could you share the sample data and expected results?
Best regards,
Community Support Team_ Scott Chang
Hi @MadhavDholakia - create a explicitly filters for the L2 as well as like below for last 13 months
FCR % L2 =
CALCULATE(
DIVIDE(
COUNTROWS(FILTER(Tickets, [FCR] = "Yes" && [Resolution Time in Bhrs] <= 30)),
COUNTROWS(FILTER(Tickets, [Type] = "Incident")),
0
),
Tickets[Queue] = "L2",
Tickets[Resolved Date] >= EDATE(TODAY(), -13)
)
calculate for L1 aswell seperately.
One for L1 queue and one for L2 queue.Rows and Columns: Add the Analyst to the rows and Resolved Date to the columns.Values: Use the newly created FCR % L1 and FCR % L2 measures in their respective visuals.
Proud to be a Super User! | |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |