Forum Discussion
Anonymous
6 years agoNot applicable
Running Total
I have Measure Created for Total Saving and I would like to show the running total of Total Saving Total Saving in: Jan Jan + Feb Jan + Feb Mar and so on I have used the mentioned below...
Ashish_Mathur
6 years agoSuper User
Hi,
Try these measures
Sales = SUM(Table1[Sales])
Sales YTD = calculate([Sales],datesytd('Date'[Date]))
To your visual, drag the Month Name from the Date Table. Select a Year in the slicer.
Hope this helps.