Forum Discussion
Anonymous
6 years agoNot applicable
Date format error
I have created the below DAX; New Downloads Title = var latest = LASTDATE('iOS - All App Units'[Date]) return "Total Downloads from " & latest If i do this in it's own dax it shows the bel...
- 6 years ago
Anonymous - Try using the FORMAT command to wrap your LASTDATE function.
Greg_Deckler
6 years agoCommunity Champion
Anonymous - Try using the FORMAT command to wrap your LASTDATE function.
Anonymous
6 years agoNot applicable
Thanks Greg!
New Downloads Title =
var latest = FORMAT(LASTDATE('iOS - All App Units'[Date]),"DD/MM/YY")
return
"Total Downloads from " & latestThat worked