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
Anonymous
Not applicable

Changing date type from Text to Date

Hello everyone,

 

I'm trying to change the date type of this column "Index" from text to date. (e.g. 31Mar'21 in text to 3/31/21 in date format).

blueraccoon_0-1624249940963.png

Thank you in advance!

1 ACCEPTED SOLUTION
Vera_33
Resident Rockstar
Resident Rockstar

Hi @Anonymous 

 

So it needs to be month/day/year format, add a custom column, then change the type to date

Table.AddColumn(yourPreviousStep, "newColumnName", each Text.Select( Text.BeforeDelimiter([Index],"'") ,{"0".."9"}) &"/"& Text.Select([Index],{"a".."z","A".."Z"}) & "/"&Text.AfterDelimiter([Index],"'"))

 

 

View solution in original post

2 REPLIES 2
Vera_33
Resident Rockstar
Resident Rockstar

Hi @Anonymous 

 

So it needs to be month/day/year format, add a custom column, then change the type to date

Table.AddColumn(yourPreviousStep, "newColumnName", each Text.Select( Text.BeforeDelimiter([Index],"'") ,{"0".."9"}) &"/"& Text.Select([Index],{"a".."z","A".."Z"}) & "/"&Text.AfterDelimiter([Index],"'"))

 

 

Anonymous
Not applicable

Thank you so much Vera, you've been a great help again!!

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.

Top Solution Authors
Top Kudoed Authors