Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Filter three values according to three different dates

Hello,   Is it possible to get sum of three measures where the three measures are affected by three different date ranges? I need Data = Measure1 + Measure2 + Measure3 Measure1 is affected by dat...
  • Greg_Deckler's avatar
    Greg_Deckler
    6 years ago

    Right, sample data explains everything. So what you want is:

     

    I need Data = 
    CALCULATE([Measure1],ALLEXCEPT('Table'[Date1])) + 
      CALCULATE([Measure2],ALLEXCEPT('Table'[Date2])) + 
        CALCULATE([Measure3],ALLEXCEPT('Table'[Date3]))