The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a measure (Attrition Country KPI) that compares 2 other measures (Attrition & Max Half Yearly Level) and depending on the result, will display various outputs including "KPI Breached". I need to create a measure that will count the number of "KPI Breached" per region.
Can this be done and if so, how? Thanks in advance.
Solved! Go to Solution.
Hi,
This measure will count
=countrows(filter(values(Data[Country]),[Attrition Country KPI]="KPI Breached"))
Hope this helps.
Thanks, I was almost there, was just missing the "Values" bit. Will have a read up on that function.
Hi,
This measure will count
=countrows(filter(values(Data[Country]),[Attrition Country KPI]="KPI Breached"))
Hope this helps.