Forum Discussion
arjuns0028
2 years agoHelper I
DAX code to get month name from date
Month = MONTH('Table'[Date])
- 2 years ago
pls try this
Month = FORMAT('Table'[Date],"MMMM")
orMonth = FORMAT('Table'[Date],"MMM")
- 2 years ago
Here is the dax to convert date to month name
Month Name= Format([DateField],”MMM”)
Aditya062
2 years agoFrequent Visitor
Here is the dax to convert date to month name
Month Name= Format([DateField],”MMM”)