Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Del235
Helper III
Helper III

convert date to month name

How do I convert date to month name?  I see the dax to convert date to month number but not month name

 

4 ACCEPTED SOLUTIONS
StuartSmith
Power Participant
Power Participant

You could try... and change to the desired format.

StuartSmith_0-1706043203166.png

 

View solution in original post

In the data view,

create two columns. one for month number and other for month name. 

Month Number = Format([YourDate], "MM")
Month Name = Format([YourDate], "MMM")

 

select the month name column, in the column tools menu, click "Sort by column". Here, by default it will show the month name column. Now, you click "Month number" column. 

sevenhills_0-1706063753060.png

 

In all your visuals of month name, it will be sorted by Month number.

 

Optional: you can hide the month number column for the users.

 

Hope it helps!

View solution in original post

Hello @Del235 ,

 

can you show us what do you have, the scenario you're working on so we could help.



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




View solution in original post

I have something like this, so this does work.  I didn't want two columns. 

View solution in original post

10 REPLIES 10
Syndicate_Admin
Administrator
Administrator

You'll see the name of the month, such as "January" or "February."
Just like in letter reverser, where you change the style of the text, here you change the format of the date!

Anonymous
Not applicable

Hi @Del235 ,

You could try @StuartSmith's suggestion to format the date column, for Format() function, it will return a text type value.

If you want to sort the month from Jan to Dec, you could try @sevenhills 's suggestion, create a new column with month number, sort the month number column, then sort the month name column by month number column.

 

Note: In Power BI, for text value, it sort by the ascii value.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi,

Use the below code:

 

MonthName = FORMAT(Table[Date], "MMM")

Del235
Helper III
Helper III

How do I make the data type date?  What I'm trying to do is get the Month name to to sort as Jan - Dec.  This leaves it as text and sorts alphabetically

Hello @Del235 ,

 

can you show us what do you have, the scenario you're working on so we could help.



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




In the data view,

create two columns. one for month number and other for month name. 

Month Number = Format([YourDate], "MM")
Month Name = Format([YourDate], "MMM")

 

select the month name column, in the column tools menu, click "Sort by column". Here, by default it will show the month name column. Now, you click "Month number" column. 

sevenhills_0-1706063753060.png

 

In all your visuals of month name, it will be sorted by Month number.

 

Optional: you can hide the month number column for the users.

 

Hope it helps!

I have something like this, so this does work.  I didn't want two columns. 

StuartSmith
Power Participant
Power Participant

You could try... and change to the desired format.

StuartSmith_0-1706043203166.png

 

Idrissshatila
Super User
Super User

Hello @Del235 ,

 

use the following code

 

Month Name = FORMAT('YourTableName'[Date],"MMMM")


Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




sayaliredij
Solution Sage
Solution Sage

HI @Del235 

 

You can use

 

Monthname = FORMAT('Table'[date_column], "MMM")

 

Thanks and Regards,

Sayali

Please mark the question solved when done and consider giving a thumbs up if posts are helpful!! 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors