Forum Discussion
Anonymous
4 years agoNot applicable
Change Measure Output to return only the date
Hi, I have a created measure that is currently returing the MM/DD/YYYY HH:MM:SS. I want it to only return the Date in the format of MM/DD/YYYY and to drop the HH:MM:SS. My measure = Ad...
- 4 years ago
Admin Call Data Refresh Label ="Call Data Last Updated: " &FORMAT(( MAX ( 'Call_Data'[Refresh Date] ) ),"M/d/yyyy")
//Try This
mh2587
Super User
4 years agoAdmin Call Data Refresh Label ="Call Data Last Updated: " &FORMAT(( MAX ( 'Call_Data'[Refresh Date] ) ),"M/d/yyyy")
//Try This
Anonymous
4 years agoNot applicable
Perfect thank you!