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

Necesidad de sumar año a fecha por fecha de creación y fecha de entrega

Debido a que hay varias fechas dentro de la tabla, debo usar el dax USERELATIONSHIP. Esto es lo que tengo:

Total por fecha de creación = CALCULAR([OE],
DATESYTD(
USERELATIONSHIP('Calendario'[Fecha], Hoja2[CREATE_DATE])))
Nota: OE= suma de la cantidad de pedido
3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

¡Hola!

Yo sería así:

CALCULATE(
    [OE]
    DATESYTD( 'Calendar'[Date] ),
    USERELATIONSHIP( 'Calendar'[Date], Sheet2[CREATE_DATE] )
)

¡Hágame saber si eso ayuda!

¡Eso lo hizo, gracias! ¿Cómo puedo introducir USERELATIONSHIP en este DAX?

CALCULAR(
Suma('Hoja2'[ORDER_QTY]),
FILTRO(
TODOSSELECCIONADOS('Calendario'[Fecha]),
ISONORAFTER('Calendario'[Fecha], Máximo('Calendario'[Fecha]), DESC)
)
)

Simplemente agréguelo como otro argumento de su expresión de cálculo, ya que habilitará la relación indicada durante la duración del cálculo. Debería ser así:

CALCULATE (
    SUM ( 'Sheet2'[ORDER_QTY] ),
    FILTER (
        ALLSELECTED ( 'Calendar'[Date] ),
        ISONORAFTER ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), DESC )
    ),
    USERELATIONSHIP ( 'Calendar'[Date], Sheet2[CREATE_DATE] )
)

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.