Forum Discussion
Cumulative Line Chart Help
Cool Dude,
If u remove the Legend from the line chart u can get the Total , I mean sum of Value which u seen in the above bar chart.
- sdukes_889 years agoFrequent Visitor
Sorry I don't think I was very clear. I mean I need the cumulative total running across the months.
So in the line chart, Aug+Sep+Oct etc
So if Aug is 20,000 and September is 300,000 the point at September for the line chart should be 320,000 etc
- Baskar9 years agoResident Rockstar
Ooh Cool,
Create new measure for this,
Running Count1 = CALCULATE(COUNTA('Date Master'[MonthInCalendar]),FILTER(ALLSELECTED('Date Master'[Date]), 'Date Master'[Date] <= MAX('Date Master'[Date])))
let me know if any help.
- sdukes_889 years agoFrequent Visitor
Thanks for this - my only problem is that Month is a text field i.e. 01-Aug, 02-Sep etc so it doesn't seem to like this.
If it helps I have 'Period' which is numeric?