Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hola, chicos
Tengo una columna con números con este formato:
19990927
Necesito cambiarlo a un formato de fecha, como este: 27.09.1999 o 27.09.1999 o algo así.
¿Puedo pedir su ayuda?
¡Muchas gracias por tu tiempo!
¡Muchas gracias!
¡Muchas gracias!
Pruebe esto en la columna calculada,
New Date (Calculated Column) =
VAR _year = LEFT(Test[Date],4)
VAR _month = MID(Test[Date],5,2)
VAR _day = RIGHT(Test[Date],2)
VAR _date = DATE(_year,_month,_day)
RETURN _date
@i_stanescu_ro
Cree una columna calculada, supongamos que los datos están en una columna denominada TextData
var __Date = TABLENAME[TEXTDATA]
return
DATE( INT(LEFT(__Date,4)) , INT(MID(__Date,5,2)) , INT(RIGHT(__Date,2)) )