Forum Discussion

UK_User123456's avatar
UK_User123456
Resolver I
6 years ago
Solved

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 graphs will automatically update with 18/19, 19/20, 20/21 rather than me having to go in and manually changing the dates in the filter for each graph?

 

TIA

  • 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.

     

     

3 Replies