Forum Discussion

JavierGold's avatar
JavierGold
Regular Visitor
9 years ago
Solved

DAX LastDate Help

I have a dataset table that has multiple columns, however, one column is titled "runtime" which contains a date like:    6/14/2017  11:13:52 AM   All of the rows in that table have the same date/...
  • Chihiro's avatar
    Chihiro
    9 years ago

    My bad. You'd need to remove .[Date] part.

     

    To get date portion only try using.

    =DATEVALUE(MAX('2017FinancialData'[Runtime]))

     

    EDIT: LASTDATE function works much the same way.