Forum Discussion
Mo_2020
4 years agoNew Member
Formatting Maxdate (no time)
Hi, When I am using the DAX MaxDate automatically the formatting is MM/DD/YYYY + time. Is it possible to only show the MM/DD/YYYY without time in a card? Thanks for your help!
- 4 years ago
Mo_2020 ,
format(Max(Table[Date]) , "MM/DD/YYYY hh:mm:ss")
new column
or if([Date] = max(Table[Date]), "MM/DD/YYYY hh:mm:ss", blank())
amitchandak
4 years agoSuper User
Mo_2020 ,
format(Max(Table[Date]) , "MM/DD/YYYY hh:mm:ss")
new column
or if([Date] = max(Table[Date]), "MM/DD/YYYY hh:mm:ss", blank())