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
vpatel55
Kudo Commander
Kudo Commander

Lookup DateTime based on the MAX of another column

I would like a DAX formula that would return the DateTime corresponding to the MAX of Price on this list.

 

27 is the largest Price, so the answer should be either 17/12/2020 17:00 or 18/12/2020 18:00, I don't mind which one:

 

p1.png

 

Here is the formula that I am currently using:

 

 

DateTime of most expensive product =
CALCULATE (
    FIRSTNONBLANK ( Data[DateTime], 1 ),
    FILTER ( Data, MAX ( Data[Price] ) )
)

 

 

The result appearing is 10:00. This is not the required result. I can see what its doing, its returning the first row that is not blank. But I don't know which other "wrapper" I can use? I tried using LOOKUPVALUE, but as I have a duplicate this does not work.

 

Any help would be appreciated. Here is the sample file:

 

https://www.dropbox.com/s/a5001h3htve47lf/Sample%20file.pbix?dl=0

 

1 ACCEPTED SOLUTION
ChrisMendoza
Resident Rockstar
Resident Rockstar

@vpatel55 - try the following:

Measure = 
VAR __maxPrice = CALCULATE(MAX('Table'[Price]),ALL('Table'))
RETURN 
    CALCULATE(
        MAX('Table'[DateTime]),
        'Table'[Price] = __maxPrice
    )

image.png






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



View solution in original post

2 REPLIES 2
ChrisMendoza
Resident Rockstar
Resident Rockstar

@vpatel55 - try the following:

Measure = 
VAR __maxPrice = CALCULATE(MAX('Table'[Price]),ALL('Table'))
RETURN 
    CALCULATE(
        MAX('Table'[DateTime]),
        'Table'[Price] = __maxPrice
    )

image.png






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



Huge Kudos @ChrisMendoza , super user indeed! 

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.