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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have created a measure if compliance is 100%.
Which is not part of the table.
Depending on the filters (months week empmid) , i need to count all that is 100%
Solved! Go to Solution.
Hi @msarao, create the two measures below, try them out, and let me know if there are any issues.
Compliance Measure = IF(SUM('ComplianceTable'[ComplianceValue]) = 100, 1, 0)
Count of 100% Compliance =
CALCULATE(
COUNTROWS('ComplianceTable'),
'ComplianceTable'[Compliance Measure] = 1
)
Did I answer your question? If so, please mark my post as the solution!✔️
Your Kudos are much appreciated! Proud to be a Responsive Resident!
Error - A function "Placeholder" has veen used in a teue/false exception that is used as a table filter expression.
I just want a count of 100%