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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Akmp
Frequent Visitor

Counting consecutive fails in test results

I have a table containing test results.

The test results contain Buildnr, TestCase name and TestCase results.

image.png

I want to create a new measure or a new column which calculates how many times a testcase has failed in a row.

e.g if i specify Build and TestCase it should show that the Test Case has failed x times in a row.

Build 125

TC_1 -> 3 fails in a row

TC_2 -> 2 fails in a row

TC_3 -> first failure

TC_4 -> No fails

 

One solutions would be to create a new table where which contains a matrix where the columns are TestCase names and The Rows Build_nr.  But i do not know how to do that.

 

What is the prefered way to find consecutive failures?

1 ACCEPTED SOLUTION
Akmp
Frequent Visitor
2 REPLIES 2
Akmp
Frequent Visitor
v-eachen-msft
Community Support
Community Support

Hi @Akmp ,

 

You can create a new calculated column to mark the “Fail” and “Pass”.

Column 2 =
VAR a =
    CALCULATE (
        COUNTROWS ( FILTER ( test, test[Result] = "fail" ) ),
        ALLEXCEPT ( test, test[TestCase], test[Build] )
    )
RETURN
    IF ( a = BLANK (), 0, a )

Then you can refer to this case which is similar to yours.
https://community.powerbi.com/t5/Desktop/DAX-how-to-count-consecutive-identical-values/td-p/701936

 

Best Regards,

Eads

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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