We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 38 | |
| 33 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 63 | |
| 37 | |
| 34 | |
| 22 |