Forum Discussion
UK_User123456
6 years agoResolver I
Automatic Financial year recognition
Hi All, Is there a DAX formula or a way around to automatically update all the datasets based on the current finanacial year and the previous 2 fy's? so for example when 20/21 comes around, my gr...
- 6 years ago
Hi UK_User123456 ,
We can create a calculated column and filter by it to work around.
inlast 2 years = VAR thisyear = YEAR ( TODAY () ) RETURN IF ( YEAR ( 'Table'[date] ) <= thisyear && YEAR ( 'Table'[date] ) >= thisyear - 1, "in last 2 years", BLANK () )Pbix as attached.
Ashish_Mathur
6 years agoSuper User
Hi,
You may refer to my solution to a similar problem here - Flex a Pivot Table to show data for x months ended a certain user defined month.
Hope this helps.