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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello mates!
I have one doubt.
I have this Excel:
So, I want to know if I don't have consecutive numbers.
Something like, if row number is row number - last row number = 1, it's ok. If it's 2, we have a not consecutive number.
Numbers are examples, I could have some message like "Not consecutive!" or something like that.
Is there any way to do this?
Just cheking if column has consecutive numbers and knowing where is the "jump".
Thank you so much! 🙂
Solved! Go to Solution.
@Anonymous Correct, so you would substitute your consequetive number column for the date column. So, like the following:
Column =
VAR __Current = [ConsequetiveNumberColumn]
VAR __Previous = MAXX(FILTER('Table','Table'[ConsequetiveNumberColumn] < EARLIER('Table'[ConsequetiveNumberColumn])),[ConsequetiveNumberColumn])
RETURN
__Current - __Previous
@Anonymous See my article on Mean Time Between Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/339586.
The basic pattern is:
Column =
VAR __Current = [Value]
VAR __PreviousDate = MAXX(FILTER('Table','Table'[Date] < EARLIER('Table'[Date])),[Date])
VAR __Previous = MAXX(FILTER('Table',[Date]=__PreviousDate),[Value])
RETURN
__Current - __Previous
Hi @Greg_Deckler 🙂
Thanks for your answer.
I don't have any Date column... Just the "consecutive" numbers.
How could I adapt the DAX to my problem?
Thanks again!
@Anonymous Correct, so you would substitute your consequetive number column for the date column. So, like the following:
Column =
VAR __Current = [ConsequetiveNumberColumn]
VAR __Previous = MAXX(FILTER('Table','Table'[ConsequetiveNumberColumn] < EARLIER('Table'[ConsequetiveNumberColumn])),[ConsequetiveNumberColumn])
RETURN
__Current - __Previous
Oops, I tried again.
That worked!!! 😄
Thanks mate 🙂
Thanks @Greg_Deckler 🙂
It seems that didn't work:
Var current and EARLIER don't work 😞
First one, the var says that 'Cannot find name' and it exists 100%.
The other one, 'Parameter is not the correct type'.
Any idea to solve these?
Thanks! 😄
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 13 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 28 | |
| 19 | |
| 11 | |
| 10 |