Forum Discussion
temuulenchoi
4 years agoFrequent Visitor
Cumulative total between date slicer
Hi there, I am trying to filter a list of cumulative Inventory with a date slicer. It works when I move the "until" side, but when I move the "from" side, it shows wrong numbers. Example "Sale"...
- 4 years ago
temuulenchoi , You should use all as inventory need to build from start
Cumulative Total Inventory=
CALCULATE(
SUM(Sale[InQty])-SUM(Sale[OutQty]),
FILTER(ALL(DateTable[Date]),
DateTable[Date] <= max(DateTable[Date]) && (DateTable[Date]) <= TODAY()))
temuulenchoi
4 years agoFrequent Visitor
I'm sorry, there must have been an error on copying the table. I just edited the post with the correct table. Thanks!
ryan_mayu
Super User
4 years agopls see the attachment and check if this is what you want.