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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors