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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
arhetyp
Helper I
Helper I

Text into data

Hi,

 

I would greatly appreciate you support on that:

Have extracted from text the fragment which referes to date but off course still remains in TEXT format as below:

I need to convert it into date/time format.

 

It is in polish but would be the same as 26 September 2018 13:04.

Additional chalenge is some raws are not date-based (the 3rd one).

 

Regards,

Arek

 

image.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @arhetyp,

 

I'd like to suggest you do replace value operate in query edit to replace specific value to null, then you can simply use 'Changed Type with Locale' option to change type.

 

Steps:

49.gif

 

Full query:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjJTKC+qSj06Oy8zUcHIzNBCwdDYysBEQSlWByhpiixpAJE0NoRI5isUpRYX5OcVpxJWi1XSELctRlZGuHUaWhlYEOsEAysjS1wGGVhaGRnjkTSE6TTEMNbEysBSKTYWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Date = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Date", type text}}),
    #"Replaced Value" = Table.ReplaceValue(#"Changed Type","o response",null,Replacer.ReplaceValue,{"Date"}),
    #"Changed Type with Locale" = Table.TransformColumnTypes(#"Replaced Value", {{"Date", type datetime}}, "pl-PL")
in
    #"Changed Type with Locale"

 

 

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @arhetyp,

 

I'd like to suggest you do replace value operate in query edit to replace specific value to null, then you can simply use 'Changed Type with Locale' option to change type.

 

Steps:

49.gif

 

Full query:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjJTKC+qSj06Oy8zUcHIzNBCwdDYysBEQSlWByhpiixpAJE0NoRI5isUpRYX5OcVpxJWi1XSELctRlZGuHUaWhlYEOsEAysjS1wGGVhaGRnjkTSE6TTEMNbEysBSKTYWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Date = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Date", type text}}),
    #"Replaced Value" = Table.ReplaceValue(#"Changed Type","o response",null,Replacer.ReplaceValue,{"Date"}),
    #"Changed Type with Locale" = Table.TransformColumnTypes(#"Replaced Value", {{"Date", type datetime}}, "pl-PL")
in
    #"Changed Type with Locale"

 

 

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.