Forum Discussion
YTD (Fiscal Year)
Hi i have used the following DAX calcualtion for my YTD profit on a product:
Value_YTD_Fis =
IF(
ISFILTERED('DateCalendar'[Date]),
ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy"),
TOTALYTD(SUM('DocumentItems'[Profit]), 'DateCalendar'[Date],"30/3")
)
My fiscal year is 1 april to 31 mar.
When i plot this, it is calcualting last years Jan, Feb and March?? so i get the following. Any ideas why?
I believe your end date parameter is in the wrong spot.
TOTALYTD(<expression>,<dates>[,<filter>][,<year_end_date>])
See the example here:
https://msdn.microsoft.com/en-us/library/ee634400.aspx
It looks like you need to put a filter parameter in there like in the example.
2 Replies
- Greg_Deckler
Community Champion
I believe your end date parameter is in the wrong spot.
TOTALYTD(<expression>,<dates>[,<filter>][,<year_end_date>])
See the example here:
https://msdn.microsoft.com/en-us/library/ee634400.aspx
It looks like you need to put a filter parameter in there like in the example.
- tmears
Helper III
thank you so much!!