Forum Discussion
Cumulative Sum With Slicer
- Anonymous9 years ago
Of course!
mattbrice is right.
In order to get YTD using ALL you need to use this:
YTDSales = CALCULATE([Sales],FILTER(ALL('Business Date'),'Business Date'[Date]<MAX('Business Date'[Date])&&'Business Date'[Year]=YEAR(MAX('Business Date'[Date]))))
or just use this staightforward formula:
YTDSales = TOTALYTD([Sales],'Business Date'[Date])
And make sure you use Date column from your 'Business Date' table in slicer
Michael
This should work:
YTDSales = TOTALYTD([Sales],CalendarTable[Date])
Also, make sure that you use your CalendarTable Month column in your slicer (NOT the Month from the Fact table)
Michael
Thanks Michael for responding.
My YTD Sales measure formule is this :
YTD SALES$=
CALCULATE (
FACT[Sales $],
FILTER (
ALLSELECTED ( 'Business Date'[Date] ),
'Business Date'[Date] <= MAX ( 'Business Date'[Date] )
)
)
My Fact table granularity is at Date level. The Slicer has the month number. With all values selected in Slicer, the running Sum for YTD sales is displaying correctly where as when I select a month in the Slicer, the result is filtered to the month selected and YTD number/running sum number becomes total for the month.
I used both ALL or ALL selected in the above measure; both behaves the same way.
- M
- Anonymous9 years agoNot applicable
ALLSELECTED should not work.
ALL - should:
YTDSales = CALCULATE([Sales],FILTER(ALL('Business Date'),'Business Date'[Date]<MAX('Business Date'[Date])))
or this:
YTDSales = TOTALYTD([Sales],'Business Date'[Date])
Also - make sure that you use a Month from your BusinessDate table in the slicer
Michael
- balumaran9 years agoFrequent Visitor
Thanks Michael. Let me give it a try and get back to you.
- Mani
- mattbrice9 years ago
Solution Sage
I hope it is ok to jump into this thread....
A couple of observations.
"YTDSales = CALCULATE([Sales],FILTER(ALL('Business Date'),'Business Date'[Date]<MAX('Business Date'[Date])))"
and
"YTDSales = TOTALYTD([Sales],'Business Date'[Date]) "
the two formulas will only return the same value if "Business Date" table only has dates for the current year or if only have Sales data for current year - otherwise as is the first formula will return a Life-to-Date value. Need to add : " && YEAR('Business Date'[Date]) = YEAR ( MAX ('Business Date'[Date] ) )" to the FILTER expression to get YTD.
And to the OP, the reason your code didn't work using ALL is because it appears you tried to apply it to a single column ALL('Business Date'[Date]) and not the whole 'Business Date' table. This left your slicer filter on 'Business Date[Month]' intact which is why you got the month-to-date number. Filters are column specific. Anonymous code works because his ALL('Business Date') removed the filter on all columns including removing the slicer filter on the month.
Hope this helps...