Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
sindhusabbineni
Regular Visitor

How to calculate the percentage of values group by date in power bi

I have a sample data as below. 

TestDateStatus
1/8/2019PASS
1/8/2019PASS
1/8/2019FAIL
2/8/2019PASS
2/8/2019FAIL

 

I want to calculate the percentage of PASS percentage(Total Number of Pass cases/Total Number of Cases) and FAIL percentage (Total Number of Fail Cases/Total Number of Cases) status for each day. I tried as below but it's not giving me the expected results.

 

Blocked by date = Calculate (
                     countrows (TableName),
                    (TableName[TestDate].[Date],[Total BLOCKED])
)

Here Total BLOCKED is the measure I created to filter the status.

Where am I going wrong here? How should I calculate the percentage of PASS and FAIL status for each day?

1 REPLY 1
AlB
Community Champion
Community Champion

Hi @sindhusabbineni 

I'm not sure I understand what you need but try this:

1. Place Table1[TestDate] in the rows of a matrix visual and Table1[Status] in the columns

2. Create this measure (format as %) and place it in the visual 

PercPASS =
DIVIDE (
    COUNT ( Table1[Status] ),
    CALCULATE ( COUNT ( Table1[Status] ), ALL ( TAble1[Status] ) )
)

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors