Forum Discussion

tmears's avatar
tmears
Icon for Helper III rankHelper III
9 years ago
Solved

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?