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
topazz11
Helper III
Helper III

Date conversion

Hello,

 

I need help a DAX to get maximum (latest) date as below? 

There are multiple timestamps on the same date and I need to get a max date from the same date timestamps.

Thank you!

 

t1.JPG

2 ACCEPTED SOLUTIONS
Greg_Deckler
Super User
Super User

Try:

 

Column =
VAR __Date = INT([Column1])
RETURN
DATE(YEAR(__Date),MONTH(__Date),DAY(__Date))
 
Set the display to just the date and not date and time.

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

v-chuncz-msft
Community Support
Community Support

@topazz11 

 

You may use the following DAX to add a calculated column.

Column =
VAR d = Table1[Timestamp].[Date]
RETURN
    IF (
        RANKX (
            FILTER ( Table1, Table1[Timestamp].[Date] = d ),
            Table1[Timestamp],
            ,
            DESC
        ) = 1,
        Table1[Timestamp]
    )

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-chuncz-msft
Community Support
Community Support

@topazz11 

 

You may use the following DAX to add a calculated column.

Column =
VAR d = Table1[Timestamp].[Date]
RETURN
    IF (
        RANKX (
            FILTER ( Table1, Table1[Timestamp].[Date] = d ),
            Table1[Timestamp],
            ,
            DESC
        ) = 1,
        Table1[Timestamp]
    )

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

Try one of  two can give

max = maxx(filter(table, table[timestamp].date = earlier(table[timestamp]).date ),table[timestamp])
max = maxx(filter(table, table[timestamp].date = earlier(table[timestamp].date) ),table[timestamp])
Greg_Deckler
Super User
Super User

Also, this: https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/td-p/985814


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
Greg_Deckler
Super User
Super User

Try:

 

Column =
VAR __Date = INT([Column1])
RETURN
DATE(YEAR(__Date),MONTH(__Date),DAY(__Date))
 
Set the display to just the date and not date and time.

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.