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
rpmm
Regular Visitor

Is there a way to easily convert this date format?

I have a JSON file where I have a date field formatted as such:

 

Tue Nov 01 20:53:41 +0000 2022

 

When I try converting column to Date/Time or Date/Time/Timezone it throws an error and I can imagine so due to the format of the value. 

 

Is there a way to change the format in the expression for the "created_at" field to associate this format? 

 

= Table.TransformColumnTypes(#"Removed Columns",{{"created_at", type datetimezone}})

 

Romit. 

1 ACCEPTED SOLUTION
danextian
Super User
Super User

Hi @rpmm ,

 

The parsing returns  an error because the string is not in the expected datetimezone format. It should be date + time  + timezone but the order in your sample is incorrect.  Try this as a custom column in Power Query:

let 
yr = Text.End([Column1],4),
time = Text.Middle([Column1],11,8),
date = Text.Middle([Column1], 4, 6),
tz = Text.BetweenDelimiters([Column1], "+", " ")
in DateTimeZone.From( Text.Combine({date, yr, time }, " ") & "+" & tz)

 

danextian_0-1669004986833.png

 










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


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

2 REPLIES 2
danextian
Super User
Super User

Hi @rpmm ,

 

The parsing returns  an error because the string is not in the expected datetimezone format. It should be date + time  + timezone but the order in your sample is incorrect.  Try this as a custom column in Power Query:

let 
yr = Text.End([Column1],4),
time = Text.Middle([Column1],11,8),
date = Text.Middle([Column1], 4, 6),
tz = Text.BetweenDelimiters([Column1], "+", " ")
in DateTimeZone.From( Text.Combine({date, yr, time }, " ") & "+" & tz)

 

danextian_0-1669004986833.png

 










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


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Thanks! This worked perfectly! 

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.