Forum Discussion
convert date to month name
- 2 years ago
You could try... and change to the desired format.
- 2 years ago
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.
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!
- 2 years ago
- 2 years ago
I have something like this, so this does work. I didn't want two columns.
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.