Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Remove slicers in a calculate function

I have a table - Table1 with columns A, B, C,  and a measure [x] which uses a calculate function to count rows on this table, based on some conditions. I also have a second table - Table2, with colum...
  • Greg_Deckler's avatar
    Greg_Deckler
    4 years ago

    Anonymous Try:

    CALCULATE (
          [x], 
          ALL(Table2),
          Table1[A] in ALL(Table2[Z])
    )