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.
Below is a sample of the data:
Date Category
8/1/19 Compliant
8/1/19 Noncompliant
8/1/19 Compliant
8/3/19 Noncompliant
8/3/19 Compliant
8/5/19 Noncompliant
I want to tally up the grand total (noncompliance + compliance) for each day and then find the percentage of noncompliance over the total (noncompliance + compliance) for each day. Is there any way I could do this?
Solved! Go to Solution.
@ninos-shibayes this is possible
Measure 2 = DIVIDE ( CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Date] ), 'Table'[CAT] = "NonCom" ), CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Date] ) ) )
@ninos-shibayes this is possible
Measure 2 = DIVIDE ( CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Date] ), 'Table'[CAT] = "NonCom" ), CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Date] ) ) )
Probably something like:
Measure = DIVIDE(COUNTROWS(FILTER('Table',[Column1]="Noncompliant")),COUNTROWS('Table'),0)
See attached.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.