Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
2 | |
2 | |
1 | |
1 | |
1 |