Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Reg no | Mileage |
CCN 342D | 3342 |
CCN 455A | 880 |
VWT 403B | 10935 |
CCN 342D | 4000 |
CCN 455A | 1000 |
Please help with the dax function to calculate difference between the last non blank row and the second last non blank row.The reg number is repeated.
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Mileage diff measure: =
VAR lastmileage =
MAX ( Data[Mileage] )
VAR previousofthelastmileage =
MAXX (
FILTER (
ALL ( Data ),
Data[Reg no] = MAX ( Data[Reg no] )
&& Data[Mileage] < lastmileage
),
Data[Mileage]
)
RETURN
IF ( HASONEVALUE ( Data[Reg no] ), lastmileage - previousofthelastmileage )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Hi @Faith_Data
Here you go https://we.tl/t-Mrey2dTPxa
First of all make sure the have the mileage column as intiger data type.
Mileage diff measure - Tamer =
SUMX (
VALUES ( 'PM Data'[REG NO] ),
CALCULATE (
VAR LastTwoDatesTable = TOPN ( 2,'PM Data', 'PM Data'[LAST SERVICE], DESC )
VAR Last_Date = MAXX ( LastTwoDatesTable, 'PM Data'[LAST SERVICE] )
VAR Last_2ndDate = MINX ( LastTwoDatesTable, 'PM Data'[LAST SERVICE] )
VAR Last_DateMileage = MAXX ( FILTER ( LastTwoDatesTable, 'PM Data'[LAST SERVICE] = Last_Date ), 'PM Data'[LAST MILEAGE] )
VAR Last_2ndDateMileage = MAXX ( FILTER ( LastTwoDatesTable, 'PM Data'[LAST SERVICE] = Last_2ndDate ), 'PM Data'[LAST MILEAGE] )
RETURN
IF (
COUNTROWS ( LastTwoDatesTable ) >= 2,
Last_DateMileage - Last_2ndDateMileage
)
)
)
Hi,
Please check the below picture and the attached pbix file.
Mileage diff measure: =
VAR lastmileage =
MAX ( Data[Mileage] )
VAR previousofthelastmileage =
MAXX (
FILTER (
ALL ( Data ),
Data[Reg no] = MAX ( Data[Reg no] )
&& Data[Mileage] < lastmileage
),
Data[Mileage]
)
RETURN
IF ( HASONEVALUE ( Data[Reg no] ), lastmileage - previousofthelastmileage )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Thank you @Jihwan_Kim for faster response ,however the measure on my end is bringing all blanks
Hi,
Please share your sample pbix file's link, and then I can try to look into it to come up with a more accurate solution.
Thanks.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Hi @Faith_Data
Please provide the expected results as per the sample data provided.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |