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

Conversión de Firstnonblankvalue

Hola a todos,

Estoy trabajando con DAX con Power PivotPower Pivot en Excel, pero creo que no admite la fórmula Firstnonblankvalue. Necesito ayuda para convertir esta fórmula que funcionará en Excel

BegInventory ? Firstnonblankvalue ( Dateadd ( 'Calendar'[Date] , - 1, DAY ) , [EndInventory] )

mientras que el [EndInventory] es EndInventory ( Calculate ( Sum ( Inventory ) , Lastnonblank ( 'Calendar'[Date] , Sum (Inventory)))

El [EndInventory] funciona muy bien como pretendía, pero no puedo pensar en el otro camino alrededor.

Espero que puedas ayudarme.

Moverse a Power BI no es actualmente una opción a partir de ahora.

¡Gracias!

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

No @jmcph ,

La sintaxis FIRSTNONBLANKVALUE no está disponible en Excel pruebe la siguiente medida:

=
VAR temp_Table =
    SUMMARIZE ( ALL ( Calendar ); Calendar[Date]; "End_Inventory"; SUM ( Table1[Value] ) )
VAR MAXIMUM_DATE =
    MAXX (
        FILTER ( temp_Table; [Date] < MAX ( [Date] ) && [End_Inventory] <> BLANK () );
        [Date]
    )
VAR Total_Previous_Day =
    FILTER ( temp_Table; [Date] = MAXIMUM_DATE )
RETURN
    SUMX ( Total_Previous_Day; [End_Inventory] )

Esto debe seleccionar la fecha máxima antes de la fecha seleccionada que tiene un valor y devolver el inventario final en ese día,

Si esto no funciona, ¿puede compartir un archivo smaple por favor?

View solution in original post

1 REPLY 1
Syndicate_Admin
Administrator
Administrator

No @jmcph ,

La sintaxis FIRSTNONBLANKVALUE no está disponible en Excel pruebe la siguiente medida:

=
VAR temp_Table =
    SUMMARIZE ( ALL ( Calendar ); Calendar[Date]; "End_Inventory"; SUM ( Table1[Value] ) )
VAR MAXIMUM_DATE =
    MAXX (
        FILTER ( temp_Table; [Date] < MAX ( [Date] ) && [End_Inventory] <> BLANK () );
        [Date]
    )
VAR Total_Previous_Day =
    FILTER ( temp_Table; [Date] = MAXIMUM_DATE )
RETURN
    SUMX ( Total_Previous_Day; [End_Inventory] )

Esto debe seleccionar la fecha máxima antes de la fecha seleccionada que tiene un valor y devolver el inventario final en ese día,

Si esto no funciona, ¿puede compartir un archivo smaple por favor?

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.