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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Syndicate_Admin
Administrator
Administrator

Hola chicos, por favor ayuden aquí. Obtengo que las operaciones de comparación de Dax no admiten la comparación de valor

CF Gantt =
Dónde StartDate =
CALCULAR ( Min ( v_ProjectGantt[ProjectStartDate] ), ELIMINARFILTROS ( 'Fecha' ) )
Dónde EndDate =
CALCULAR ( Min ( v_ProjectGantt[ProjectEndDate] ), ELIMINARFILTROS ( 'Fecha' ) )
Dónde ProjectPeriod =
Min ( 'Fecha'[Fecha] ) >= StartDate
&& Min ( 'Fecha'[Fecha] ) <= EndDate
Dónde ProjectStatus =
CALCULAR ( Min ( v_ProjectGantt[CompletionStatus] ), ELIMINARFILTROS ( 'Fecha' ) )
Dónde Resultado =
INTERRUPTOR (
VERDADERO (),
ProyectoPeriodo
&& ProjectStatus = "Completado", 1,
ProyectoPeriodo
&& ProjectStatus = "Retrasado", 2,
ProyectoPeriodo
&& ProjectStatus = "Abierto", 3
)
DEVOLUCIÓN
Resultado
1 REPLY 1
Syndicate_Admin
Administrator
Administrator

El problema es ProjectPeriod.

Probar:

CF Gantt =
VAR StartDate =
    CALCULATE ( MIN ( v_ProjectGantt[ProjectStartDate] ), REMOVEFILTERS ( 'Date' ) )
VAR EndDate =
    CALCULATE ( MIN ( v_ProjectGantt[ProjectEndDate] ), REMOVEFILTERS ( 'Date' ) )
VAR ProjectPeriod =
    FILTER (
        VALUES ( 'Date'[Date] ),
        MIN ( 'Date'[Date] ) >= StartDate
            && MIN ( 'Date'[Date] ) <= EndDate
    )
VAR ProjectStatus =
    CALCULATE ( MIN ( v_ProjectGantt[CompletionStatus] ), REMOVEFILTERS ( 'Date' ) )
VAR Result =
    SWITCH (
        TRUE (),
        MAX ( Date[Date] )
            IN ProjectPeriod
            && ProjectStatus = "Completed", 1,
        MAX ( Date[Date] )
            IN ProjectPeriod
            && ProjectStatus = "Delayed", 2,
        MAX ( Date[Date] )
            IN ProjectPeriod
            && ProjectStatus = "Open", 3
    )
RETURN
    Result

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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