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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
HishamAT
Helper I
Helper I

Converting month name to date

Hi, 

I have a column in a table as follows : 

column Name is : Month

column Data Type is : text

What i need is to convert it to data type date and with the format of MMM (Only month name).

Can you help me please on this.

Thanks

 

1 ACCEPTED SOLUTION
TomasAndersson
Solution Sage
Solution Sage

So you only have the text, and no other column with a date to use?

This calculated columns would work

Month Name = 
SWITCH(Table[Month],
   "January", Format (Date(2020,1,1), “mmm”),
   "February", Format (Date(2020,2,1), “mmm”),
//and so on for the rest of the months
)

 You would have to adjust the year according to your need. If you are able though, it would be better if you could edit the data source so there are dates to work with. This solution is not very efficient.

View solution in original post

4 REPLIES 4
TomasAndersson
Solution Sage
Solution Sage

So you only have the text, and no other column with a date to use?

This calculated columns would work

Month Name = 
SWITCH(Table[Month],
   "January", Format (Date(2020,1,1), “mmm”),
   "February", Format (Date(2020,2,1), “mmm”),
//and so on for the rest of the months
)

 You would have to adjust the year according to your need. If you are able though, it would be better if you could edit the data source so there are dates to work with. This solution is not very efficient.

This what i have and and it is a ( text ) data type , what i need is to convert this column to data type ( date ) and with the format of MMM (Only month name).

Should i create another culomn to convert it or what ?

 

HishamAT_0-1669807736414.png

Thanks 

Yes, you will need to create a new calculated column that, based on the text in "Month", returns the date you want. And then you have to format that column.

Successfully completed... Thanks 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.