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