March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hola
Necesito obtener un formato de fecha de esto: 24 de agosto de 2022, 12:59:22.366 en Power Query ¿es posible? Cuando acabo de cambiar el tipo de datos, obtengo un error.
Gracias
La parte molesta es el día ordinal ("24" en lugar de "24"), por lo que es posible que deba eliminarlo primero antes de analizar la fecha y la hora.
Aquí hay un posible enfoque que funciona para mí:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcixNLy0uUTAyKclQMDIwMtJRMDSyMrW0MjLSMzYzU4rViVbyTaxUMASpAUsbGFoZGFkZm+iZmpkrxcYCAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
#"Replaced Value" = Table.ReplaceValue(Source,each Text.AfterDelimiter([Column1], " "), each Text.Remove(Text.AfterDelimiter([Column1], " "), {"a".."z"}),Replacer.ReplaceText,{"Column1"}),
#"Format as Date" = Table.TransformColumns(#"Replaced Value",{{"Column1", each DateTime.FromText(_, [Format="MMMM d yyyy, HH:mm:ss.fff"]), type datetime}})
in
#"Format as Date"
Es posible si su número de segundos no tiene decimales.
Si insiste en tal formato, parece que solo se puede representar en formato de texto.
Saludos
Esteban Tao
Si esta publicación ayuda, considere Aceptarla como la solución para ayudar a los otros miembros a encontrarla más rápidamente.
Intente hacer clic con el botón derecho en la columna> Cambiar tipo y Usar configuración regional y vea si esto funciona para usted. Tuve problemas similares antes y lo hizo.
HTH
¿Te ayudé hoy? Por favor, acepte mi solución y presione el botón Kudos.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.