Forum Discussion
Dynamically Filter a Calendar Table based on Start & End Date from Slicer
shubuya - I think you should be slicing on the date table, instead of a disconnected table. The MTD or YTD will alter the filter context, so that you will end up with the appropriate dates for your calculation.
- shubuya7 years agoFrequent Visitor
I forgot to mention a critical part of why I didn't use the Calendar Table for the slicers:
I was not able to get this formula to create a line chart with the running totals (filtered YTD December 2010):
Departures Running Total =CALCULATE([Count YTD],FILTER(ALL('Calendar'[Date]),ISONORAFTER('Calendar'[Date], MAX('Calendar'[Date]), DESC)))I need this chart to scale and show only the running total for a given interval, in this example of YTD: 1/1/2010 to 12/31/2010. The running total needs to capture the ending value as a starting point to sum the running total each period until the end date. So for example if 12/31/2009 had a total accumulated total of 59, then the line chart would need to start at 59 on 1/1/2010, incrementing until the end date of 12/31/2010.- Anonymous7 years agoNot applicable
shubuya - Since you are considering values from previous years, you don't want to use a YTD calculation. You're looking for something more like:
Departures Running Total = var displaydate = MAX('Calendar'[Date]) return CALCULATE( <Count Measure (Not YTD)>, 'Calendar'[Date] <= displaydate )- shubuya7 years agoFrequent Visitor
Thanks for your help - I think I am close, but when I use the formula you provided the chart is not scaling to show the dates 1/1/2015 to 12/31/2015. How do I edit your formula to only show that date interval?