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
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
Solved! Go to Solution.
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] )
)
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.
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] )
)
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.
@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.
Proud to be a Super User!
Check out new user group experience and if you are a leader please create your group
100+ sessions, 100+ speakers, Product managers, MVPs, and experts. All about Power BI. Attend online or watch the recordings.
User | Count |
---|---|
2 | |
1 | |
1 | |
1 | |
1 |