Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hola a todos,
Estoy trabajando en una gestión de stock y quierovalorar el stock final.
Así que tengo columnas llamadas "stock final", "entrada", "salidas".
Quiero evaluar "stock final" que es "stock final" anterior + misma "entrada" - mismas "salidas".
¿Es posible hacerlo en un "stock final"?
Solved! Go to Solution.
Puede crear una medida como
Final stock =
VAR CurrentDate =
MAX ( 'Date'[Date] )
VAR Result =
CALCULATE (
SUM ( 'Table'[Entry] ) - SUM ( 'Table'[Outings] ),
'Date'[Date] <= CurrentDate
)
RETURN
Result
Check out the November 2023 Power BI update to learn about new features.