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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all,
I'm very new to Power BI and in need of some help.
I need to created a report to show % of processes that where completed in SLA by class.
The multiple 'process' are grouped under 'class'. 'SLA-Status' is recorded for each 'process' as either 'In SLA' or 'Missed SLA'. If any one of the processes in the class has 'Missed SLA' then the whole class is missed SLA.
I'm struggling to write thre measure, any help appreciated.
thanks
Bob
@Chas3 , Create a measure like
Measure =
var _count = calculate(count(Table[class]), filter(Table, Table[SLA Satus] ="Missed SLA"))
return
countx(values(Table[process]), calculate(if(isblank(_count), [process], blank())))
Thanks for coming back to me. I tried your measure but hit a synced error. Any advice?
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!