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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Amymai
Frequent Visitor

Find Consecutive Rows

Hi everyone,

 

I want to find 2 and 3 consecutive rows where Index equals 1 and show the results as below.

Can you please help me. I'd like to use DAX, not power query as I can't go back to query at this step.

 

Thanks so much!

 

Index2 consecutive rows (result)3 consecutive rows (result)
110
110
000
111
111
111
000
100
000
111
111
111
1 ACCEPTED SOLUTION

@v-chuncz-msft Thank you so much!!! It works. 

 

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@Amymai,

 

You may add an index column in Query Editor and use DAX below to add a calculated column.

Column =
VAR c = 2
RETURN
    IF (
        Table1[Index] = 0
            ||
            VAR i = Table1[Index.1]
            VAR p =
                MAXX (
                    FILTER ( Table1, Table1[Index.1] < i && Table1[Index] = 0 ),
                    Table1[Index.1]
                )
            VAR n =
                MINX (
                    FILTER ( Table1, Table1[Index.1] > i && Table1[Index] = 0 ),
                    Table1[Index.1]
                )
            RETURN
                IF ( ISBLANK ( n ), MAX ( Table1[Index.1] ) + 1, n )
                    - IF ( ISBLANK ( p ), MIN ( Table1[Index.1] ) - 1, p )
                    - 1
                    < c,
        0,
        1
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-chuncz-msft Thank you so much!!! It works. 

 

Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.