Forum Discussion

vani's avatar
vani
Helper I
10 years ago
Solved

Ignore filter year selection

Hello everyone,   Iam trying to ignore the selection of an certain year.   I've the following measure:   Grow Year -1 = CALCULATE(SUM('Inscrições'[Value]);FILTER('Inscrições';and(not('Inscriçõe...
  • SqlJason's avatar
    SqlJason
    10 years ago

    Alright, I think I understood you now. What you want is to show the previous year no matter what year is selected. For eg, if we are on 2016, you always want to show 2015 data, even if we select 2010 or 2012 or any other year on filter.

     

    1) Create a measure that will show the max year available in the fact table

    MaxYear=CALCULATE(MAX('Fact'[Year]), ALL('Fact'[Year]))

     

    2) Now make the measure as you want. Instead of hardcoding 2014, you can use the measure which will always return the max year available in fact, irrespective of the filter.

    test=CALCULATE(SUM('Fact'[Sales]), FILTER(ALL('Fact'[Year]), 'Fact'[Year]=[MaxYear]-1))

     

    Is this what you want? :)