Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

YTD graph until selected month

Hi,

 

I could really use your help with the following measure.

 

I made a graph showing the total sales up to the selected month.

So if I select Dec 2018, I see jan -  dec 2018.

If I select jan 2019, I see only jan 2019.

 

2019-01-16_15-28-31.png

 

I used the following formula:

 

Turnover MSCI FY =
VAR MinDate = DATE(YEAR( MAX('Date'[Date]));1;1)
VAR MaxDate = MAX('Date'[Date])
RETURN CALCULATE([Total Turnover MSCI];FILTER(ALL('Date'[Date]);'Date'[Date] >= MinDate && 'Date'[Date] <= MaxDate))

 

The slicer is based on Date[Date], the axis is based on Billing[Date]. But both are linked.

 

Now I would like to add a YTD line in this graph or in another graph if this is easier.

The import thing is that 'Current Year' depends on the selected month.

If jan 2019 is selected, then Current Year is 2019. If Dec 2018 is selected, Current Year is 2018.

 

Really appreciate your help!

 

Valérie

 

1 ACCEPTED SOLUTION
v-yuezhe-msft
Employee
Employee

@Anonymous,

Please create a new date table using dax below. Please note that there is no relationship between the new date table and other table.

Calendar = CALENDARAUTO()

 

Then create the following measures in your table.

YTD = TOTALYTD([Total Turnover MSCI];'Date'[Date])
NewMeasure= var Ldate = MAX('Calendar'[Date])//Last date

return

         if(min('Date'[Date])<=Ldate;
                   [YTD])


At last, use date field of the new date table('Calendar'[Date]) to create slicer, create a line chart using 'Date'[Date] field and NewMeasure.

Regards,
Lydia

 

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yuezhe-msft
Employee
Employee

@Anonymous,

Please create a new date table using dax below. Please note that there is no relationship between the new date table and other table.

Calendar = CALENDARAUTO()

 

Then create the following measures in your table.

YTD = TOTALYTD([Total Turnover MSCI];'Date'[Date])
NewMeasure= var Ldate = MAX('Calendar'[Date])//Last date

return

         if(min('Date'[Date])<=Ldate;
                   [YTD])


At last, use date field of the new date table('Calendar'[Date]) to create slicer, create a line chart using 'Date'[Date] field and NewMeasure.

Regards,
Lydia

 

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-yuezhe-msft i tried your solution and i do get a dynamic chart that displays data up to the month selected in the slicer but the displayed data points are filtered based on the context ie every month i see the total not the cumulative amount as it builds up month by month. is there a way to do this and have a dynamic line chart that builds up month by month?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.