Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hola
Recibo este error " No se puede convertir el valor '6/4/' del tipo Texto a tipo Integer. "
Debajo del identificador de captura de pantalla se muestran los datos de la columna "Fecha de creación" de ejemplo
A continuación se muestra la columna calculada utilizada:
Por favor, intente:
In Created Date =
VAR _date =
LOOKUPVALUE (
'Dim_In'[CreatedDate],
Dim_In[Id], Vw_GC_In_Benefit_Pvt_Data_SnapShot[In ID]
)
VAR _month =
LEFT ( _date, FIND ( "/", _date, 1 ) - 1 )
VAR _day =
MID (
[Column1],
FIND ( "/", _date, 1 ) + 1,
FIND ( "/", _date, FIND ( "/", _date, 1 ) + 1 )
- FIND ( "/", _date, 1 ) - 1
)
VAR _year =
RIGHT ( _date, 4 )
RETURN
DATE ( _year, _month, _day )
O
In Created Date2 =
VAR _date =
LOOKUPVALUE (
'Dim_In'[CreatedDate],
Dim_In[Id], Vw_GC_In_Benefit_Pvt_Data_SnapShot[In ID]
)
RETURN
DATE ( YEAR ( _date ), MONTH ( _date ), DAY ( _date ) )
Resultado final:
Saludos
Jianbo Li
Si esta publicación ayuda, considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
Comparta el archivo pbix de muestra para ayudarlo.
parece que falta el año en los datos y Power Query adivina que se refiere al año actual.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.