Forum Discussion
chonchar
Helper V
2 years agoCustom Fiscal Year with DAX
parry2k Erokor Good morning, I have a very large data set spanning 7 fiscal years. I currently have an area chart that visualizes "Total Screens" on the Y-axis and "Year" on the X-axis. See bel...
- 2 years ago
chonchar if it is of type date then try to change it to this to see if it works:
Year = VAR __Date = 'Table'[Date] VAR __Year = YEAR ( __Date ) VAR __StartDate = DATE ( __Year, 10, 1 ) VAR __EndDate = DATE ( __Year + 1, 9, 30 ) RETURN IF ( __Date >= __StartDate && __Date <= __EndDate, __Year + 1, __Year )