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
Naxyr
New Member

Necesita ayuda para obtener números LOT basados en LIFO

Tengo 2 mesas
1 Tiene acciones en la mano

Código
SIH ( Cantidad)

2 está teniendo lote Wise Goods Receipts
Código
Fecha de recepción
Qty

Número de lote
Fecha de exp

Desea asignar Balance SIH (Last In First Out) y Mostrar los números de lote

Naxyr_0-1599586122591.png

Naxyr_1-1599586165291.png

Quiero obtener sólo los últimos números de lote que llegan a la qty y ocultar todos los demás números de lote

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hola @Naxyr ,

Por favor, compruebe:

Measure =
VAR RunningTotal =
    CALCULATE (
        SUM ( 'Table 2'[QTY] ),
        FILTER (
            ALLSELECTED ( 'Table 2' ),
            'Table 2'[CODE] = MAX ( 'Table 2'[CODE] )
                && 'Table 2'[Expiration Date] >= MAX ( 'Table 2'[Expiration Date] )
        )
    )
VAR RunningTotal_ =
    CALCULATE (
        SUM ( 'Table 2'[QTY] ),
        FILTER (
            ALLSELECTED ( 'Table 2' ),
            'Table 2'[CODE] = MAX ( 'Table 2'[CODE] )
                && 'Table 2'[Expiration Date] > MAX ( 'Table 2'[Expiration Date] )
        )
    )
VAR SIH_ =
    SUM ( 'Table 1'[SIH] )
RETURN
    IF (
        HASONEVALUE ( 'Table 2'[Expiration Date] ),
        MAX (
            IF ( RunningTotal <= SIH_, SUM ( 'Table 2'[QTY] ), SIH_ - RunningTotal_ ),
            BLANK ()
        ),
        SUM ( 'Table 1'[SIH] )
    )

re.jpgsih.PNG

Saludos

Icey

Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

View solution in original post

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

Esto funciona muchas gracias!

Me pregunto si es posible calcular en la tabla de datos.

También me gustaría calcular el promedio ponderado # de días multiplicando today-prod. Fecha y cantidad.

Gracias de antemano

Icey
Community Support
Community Support

Hola @Naxyr ,

Por favor, compruebe:

Measure =
VAR RunningTotal =
    CALCULATE (
        SUM ( 'Table 2'[QTY] ),
        FILTER (
            ALLSELECTED ( 'Table 2' ),
            'Table 2'[CODE] = MAX ( 'Table 2'[CODE] )
                && 'Table 2'[Expiration Date] >= MAX ( 'Table 2'[Expiration Date] )
        )
    )
VAR RunningTotal_ =
    CALCULATE (
        SUM ( 'Table 2'[QTY] ),
        FILTER (
            ALLSELECTED ( 'Table 2' ),
            'Table 2'[CODE] = MAX ( 'Table 2'[CODE] )
                && 'Table 2'[Expiration Date] > MAX ( 'Table 2'[Expiration Date] )
        )
    )
VAR SIH_ =
    SUM ( 'Table 1'[SIH] )
RETURN
    IF (
        HASONEVALUE ( 'Table 2'[Expiration Date] ),
        MAX (
            IF ( RunningTotal <= SIH_, SUM ( 'Table 2'[QTY] ), SIH_ - RunningTotal_ ),
            BLANK ()
        ),
        SUM ( 'Table 1'[SIH] )
    )

re.jpgsih.PNG

Saludos

Icey

Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

Greg_Deckler
Super User
Super User

@Naxyr - No muy claro.

No es realmente suficiente información para seguir adelante, por favor primero compruebe si su problema es un problema común enumerado aquí: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Además, consulte este post sobre cómo obtener respuesta a su pregunta rápidamente: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

Las partes más importantes son:
1. Datos de muestra como texto, utilice la herramienta de tabla en la barra de edición
2. Salida esperada de los datos de muestra
3. Explicación en palabras de cómo obtener de 1. a 2.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.