Forum Discussion

mshparber's avatar
mshparber
Advocate I
4 years ago
Solved

ALLEXCEPT entire table

I am trying to build a measure that removes filters from any table, except for Calendar. I try to do: = CALCULATE([Sales Amt], ALLEXCEPT(Calendar) but it requires specific columns.  Maybe this sho...
  • CNENFRNL's avatar
    4 years ago

    In CALCULATE(), tables can be used as filter modifiers; thus you can author DAX formula this way,

    = CALCULATE([Sales Amt], ALL(), Calendar)