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
kattlees
Post Patron
Post Patron

How to convert text column to date or time

I have two columns in my database for date and time. The issue is they are entered as text.

Examples would be

082520        1258

051620         0700

 

Is there a way in power query to have these convert to a date and time field automatically? I was trying a custom column but can't figure out the code to use.

 

Thanks in advance.

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @kattlees ,

 

This is troublesome, maybe you can do this.

Please refer to my .pbix file.

v-lionel-msft_2-1598518203533.png

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-lionel-msft
Community Support
Community Support

Hi @kattlees ,

 

This is troublesome, maybe you can do this.

Please refer to my .pbix file.

v-lionel-msft_2-1598518203533.png

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

pranit828
Community Champion
Community Champion

HI @kattlees 

In power query you have a function if it helps.

DateTime.FromText()

https://docs.microsoft.com/en-us/powerquery-m/datetime-fromtext

 

Alternatively you can use the DAX functions DATE() and TIME()





PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile
amitchandak
Super User
Super User

@kattlees , in Dax

 

Date = date(right([col1],2), left([col1],2), mid([col1],3,2))

time = time(left([col2],2),right([col2],2),)

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.