Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get 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

Reply
Syndicate_Admin
Administrator
Administrator

No se puede convertir el valor '6/4/' del tipo Text al tipo Integer.

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

vicky2123131_0-1683181726666.png

A continuación se muestra la columna calculada utilizada:

En Fecha de creación = Fecha(Izquierda(LOOKUPVALUE('Dim_In'[Fecha de creación],
Dim_In[Id],
Vw_GC_In_Benefit_Pvt_Data_SnapShot[En ID]),4),Medio(LOOKUPVALUE('Dim_In'[Fecha de creación],
Dim_In[Id],
Vw_GC_In_Benefit_Pvt_Data_SnapShot[En ID]),6,2),Medio(LOOKUPVALUE('Dim_In'[Fecha de creación],
Dim_In[Id],
Vw_GC_In_Benefit_Pvt_Data_SnapShot[En ID]),9,2))
3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

@vicky2123131 ,

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:

vjianbolimsft_0-1685089452308.png

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.

Syndicate_Admin
Administrator
Administrator

Comparta el archivo pbix de muestra para ayudarlo.

Syndicate_Admin
Administrator
Administrator

parece que falta el año en los datos y Power Query adivina que se refiere al año actual.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Top Solution Authors
Top Kudoed Authors