Forum Discussion
JavierGold
9 years agoRegular Visitor
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/...
- 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.
Chihiro
9 years agoSolution Sage
Try...
Updated = MAX('2017FinancialData'[Runtime].[Date])
JavierGold
9 years agoRegular Visitor
Same result....;-(
- Chihiro9 years agoSolution Sage
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.
- JavierGold9 years agoRegular Visitor
Perfect. Thank you!