Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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!
| Index | 2 consecutive rows (result) | 3 consecutive rows (result) |
| 1 | 1 | 0 |
| 1 | 1 | 0 |
| 0 | 0 | 0 |
| 1 | 1 | 1 |
| 1 | 1 | 1 |
| 1 | 1 | 1 |
| 0 | 0 | 0 |
| 1 | 0 | 0 |
| 0 | 0 | 0 |
| 1 | 1 | 1 |
| 1 | 1 | 1 |
| 1 | 1 | 1 |
Solved! Go to Solution.
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
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 60 | |
| 45 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 108 | |
| 108 | |
| 41 | |
| 30 | |
| 27 |