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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.