Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi all,
I have one Date as datatype text. I want to extract Date and Time from that text. My datefield is like "Wed May 13 12:06:29 UTC 2020". I tried to change datatype from Power BI desktop but it shows error and I tried with Text.Middle function but it didn't work for me as well.
Now, how can I extract date and time from mention text?
Thanks,
Jay
Solved! Go to Solution.
Hi @jaypatel
Try the below script or see the attached for the ref.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCk9NUfBNrFQwNFYwNLIyMLMyslQIDXFWMDIwMlCKjQUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [DateTimeColumn = _t]),
#"Added Custom" = Table.AddColumn(Source, "Custom", each
let split =
Text.Split( [DateTimeColumn], " " ),
dateTime = DateTime.FromText( split{5} & " " & split{1} & " " & split{2} & " " & split{3} )
in
dateTime
)
in
#"Added Custom"
Hi @jaypatel
Try the below script or see the attached for the ref.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCk9NUfBNrFQwNFYwNLIyMLMyslQIDXFWMDIwMlCKjQUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [DateTimeColumn = _t]),
#"Added Custom" = Table.AddColumn(Source, "Custom", each
let split =
Text.Split( [DateTimeColumn], " " ),
dateTime = DateTime.FromText( split{5} & " " & split{1} & " " & split{2} & " " & split{3} )
in
dateTime
)
in
#"Added Custom"
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
54 | |
38 | |
31 |
User | Count |
---|---|
71 | |
64 | |
60 | |
50 | |
45 |