Forum Discussion
Anonymous
5 years agoNot applicable
Conversion of date (data type) to text through dax expression
Hi, I need to convert from date to text/string format through dax expression/measure and i tried two functions datevalue and format but these arent working. Below is the measure for your referen...
- 5 years ago
Anonymous , date to text is simple
format([Date], "YYYY MM DD" )
for also give MMM DDD etc
refer for the doc
lucas021
4 years agoNew Member
Thanks. It worked for me.