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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi all,
I've got a SLA table with several Assignment Groups and a Stage column with either Achieved or Breached.
I'm trying to work out the % achieved based on the Stage column for each assignment group and create a dial that changes based on the selection. Anyone know how I can achieve this? Thanks in advance!
-Mike
Solved! Go to Solution.
Hi
This approach might help. Let's say we have this SLA table:
Group1: 4 out of 5 have stage "Achieved"
Group2: 1 out of 3 has stage "Achieved"
Create this measure
SuccessRate = CALCULATE( COUNTA(SLA[Stage]), SLA[Stage] ="Achieved") / CALCULATE(COUNTA(SLA[Stage]))
Result:
Hope this helps!
JJ
Hi
This approach might help. Let's say we have this SLA table:
Group1: 4 out of 5 have stage "Achieved"
Group2: 1 out of 3 has stage "Achieved"
Create this measure
SuccessRate = CALCULATE( COUNTA(SLA[Stage]), SLA[Stage] ="Achieved") / CALCULATE(COUNTA(SLA[Stage]))
Result:
Hope this helps!
JJ
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.