Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I would like to create a new column which would measure the difference between the two rows to find the "scan length"
What would be the DAX formula for this?
Thanks!
new column=maxx(filter(table,table[Local Time]>earlier(table[Local Time])),table[Local Time])-table[Local Time]
Hi @Anonymous
Try this:
Diff =
var _curMeasure = MAX(myTable[Measure]) //This row's measure
var _curTime = MAX(myTable[Time]) //This row's time
var _calc = CALCULATE(MAX(myTable[Measure]),FILTER(ALL(myTable),myTable[Time]<_curTime)) //Get the measure of the previous row
return IF(_curMeasure-_calc=_curMeasure,0,_curMeasure-_calc) //if there is no previous measure, then 0 else the diff
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!
I am unsure what to put for this rows measure?
Thanks
Hi @Anonymous ,
As you did not supply us with a pbix, I created a quick table called myTable with the columns named Time and Measure.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
12 | |
11 | |
8 |
User | Count |
---|---|
24 | |
19 | |
12 | |
11 | |
10 |