Forum Discussion
Anonymous
4 years agoNot applicable
Measures Calculating Incorrectly at Line Level
Hello, Hoping someone can help me. I'm trying to do something very simple and basic in Power BI, yet each attempt using different methods is coming up incorrecct as well. I have inventory it...
- Anonymous4 years ago
AlexisOlson I was finally successful and was able to create the proper sum per item using this measure:
Current Qty = SUMX(SUMMARIZE(vw_TubingShortage_InventoryUsage,[Item Name],[CurrentQty]),[CurrentQty]) - 4 years ago
It's doesn't make sense to me why that would necessarily be the "correct" sum but you could do something like this:
SUMX ( SUMMARIZE ( Table1, Table1[Item Name], Table1[Current Qty] ), Table1[Current Qty] )
Anonymous
4 years agoNot applicable
AlexisOlson thank you.
So how would I solve the issue of summing the amounts to reflect the correct value regardless of the date? The sum should be 130.
Thank you.
Anonymous
4 years agoNot applicable
AlexisOlson I was finally successful and was able to create the proper sum per item using this measure:
Current Qty = SUMX(SUMMARIZE(vw_TubingShortage_InventoryUsage,[Item Name],[CurrentQty]),[CurrentQty])