Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Extraer fecha y hora del texto
05-22-2020
10:31 PM
Source Community: Power BI
Hola a todos
Tengo una fecha como texto de tipo de datos. Quiero extraer la fecha y la hora de ese texto. Mi fecha es como "Mim 13 de mayo 12:06:29 UTC 2020". Intenté cambiar el tipo de datos desde el escritorio de Power BI, pero muestra un error y intenté con la función Text.Middle, pero tampoco funcionó para mí.
Ahora, ¿cómo puedo extraer la fecha y la hora del texto de la mención?
Gracias
Jay
Solved! Go to Solution.
1 ACCEPTED SOLUTION
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2020
10:31 PM
Source Community: Power BI

Hola @jaypatel
Pruebe el siguiente script o vea el adjunto para el 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"
Saludos
Mariusz
Si este post ayuda,entonces por favor considere aceptarlo como la solución.
Por favor, siéntase libre de conectarse conmigo.
Linkedin
Mariusz
Si este post ayuda,entonces por favor considere aceptarlo como la solución.
Por favor, siéntase libre de conectarse conmigo.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2020
10:31 PM
Source Community: Power BI

Hola @jaypatel
Pruebe el siguiente script o vea el adjunto para el 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"
Saludos
Mariusz
Si este post ayuda,entonces por favor considere aceptarlo como la solución.
Por favor, siéntase libre de conectarse conmigo.
Linkedin
Mariusz
Si este post ayuda,entonces por favor considere aceptarlo como la solución.
Por favor, siéntase libre de conectarse conmigo.

Helpful resources
Recommendations
Subject | Author | Posted | |
---|---|---|---|
11-03-2021 04:36 AM | |||
02-10-2022 10:08 PM | |||
01-25-2021 01:23 AM | |||
03-31-2022 12:41 AM | |||
12-09-2020 07:32 AM |