Forum Discussion
Anonymous
6 years agoNot applicable
YTD Running Total Chart
I am trying to create a chart showing the running cummulative total by day for the current fiscal year. Here is the measure I am using: Total Proposed Project Costs YTD = TOTALYTD(
[Total Prop...
v-juanli-msft
Community Support
6 years agoHi Anonymous
Create two measures
CY_YTD-TODAY =
CALCULATE (
TOTALYTD (
[sum cost],
'calendar'[Date],
'calendar'[fiscal year]
= YEAR ( TODAY () ) + 1,
"6/30"
),
FILTER ( 'calendar', 'calendar'[Date] <= TODAY () )
)
LY_YTD = TOTALYTD([sum cost],'calendar'[Date],'calendar'[fiscal year]=YEAR(TODAY()),"6/30")
Best Regards
Maggie
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
I'm getting closer, but it's still not right.
I'd like both lines to start on the graph in July 2019, so I can direclty see how this year is doing compared to last year by the same point in the year.
I set the filter on the graph to relative date filtering for dates in this year, but that leaves the tail on the left. I want the graph to start on July 1 of whatever current fiscal year we are in (currently 2020).
Thanks!