Forum Discussion

arjuns0028's avatar
arjuns0028
Helper I
2 years ago
Solved

DAX code to get month name from date

Month = MONTH('Table'[Date])
  • Ahmedx's avatar
    2 years ago

    pls try this

    Month = FORMAT('Table'[Date],"MMMM")
    or

    Month = FORMAT('Table'[Date],"MMM")

  • Aditya062's avatar
    2 years ago

    Here is the dax to convert date to month name
    Month Name= Format([DateField],”MMM”)