Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
cmccully
Helper I
Helper I

Find a value associated with the latest date

I have a list of mileage reads and want to get the reading associated with the latest mileage date. 

 

Because mileages are sometimes corrected I cannot simply grab the highest mileage reading because that value may not be accurate. For example, in the screen shot below we see the correct mileage for this vehicle is 106598 taken on 8/20. However, the highest reading is 140357 taken on 8/9.

 

2019-08-23_13-20-19.jpg

 

What I want is a measure to give the different of the earliest and latest readings. Something like this but that does not use the max of meter but that uses the meter reading associted with the latest date Query1[METER_DATE].

Usage Measure = MAX(Query1[METER]) - MIN(Query1[METER])
 
Thank you for any help you can provide.
1 ACCEPTED SOLUTION

Hi,

This measure works

Measure = CALCULATE(SUM('Sheet 1'[METER]),LASTDATE('Sheet 1'[METER_DATE]))

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

10 REPLIES 10
Ashish_Mathur
Super User
Super User

Hi,

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Sorry for the delay in responding. I have posted a test file here:

https://drive.google.com/file/d/14Vq9JOr5tWuilC4Z-rbM6BSnulIzJ8LU/view?usp=sharing

 

 

Anonymous
Not applicable

@cmccully

Did you attempt with what I recommend Ed in my last post as that worked?
Anonymous
Not applicable

Hey @cmccully 

 

You can use calculate to:

1. Get the MAX reading

2. For the MAX date

Maybe something like this:

CALCULATE(
     MAX(Query1[METER]) - MIN(Query1[METER]),
     Query1[METER_DATE] = MAX(Query1[METER_DATE])
)

I get this error when using your formula in a measure:

 

A function 'MAX' has been used in a True/False expression that is used as a table filter expression. This is not allowed.

Anonymous
Not applicable

Hey @cmccully 

 

I saw your response last night when I got home from work. My apologies.

I should have formatted the filter argument of Calculate differently:

 

Latest Date Max_Min = 
CALCULATE(
    MAX(Query1[Meter]) - MIN(Query1[Meter]),
    FILTER(
        Query1,
        Query1[Meter_Date] = MAX(Query1[Meter_Date])
    )
)

Here is a screenshot of my test:

Capture.PNG

 

 

 

 

 

 

 

 

Click HERE to access my pbix file used for testing.

Sorry for taking so long to respond. I created a measure using your new DAX code but am still not getting anything. I posted a link below to the PBIX test file I am using.

 

Here is what it looks like when I try to use the measure:

 

Power BI Screen Shot 1.jpg

 

I want to get the mileage 106878 as that is the reading associated with the latest date.

Thank you!

 

https://drive.google.com/file/d/14Vq9JOr5tWuilC4Z-rbM6BSnulIzJ8LU/view?usp=sharing

Hi,

This measure works

Measure = CALCULATE(SUM('Sheet 1'[METER]),LASTDATE('Sheet 1'[METER_DATE]))

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Thank you, that worked!

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.