Forum Discussion
Anonymous
4 years agoNot applicable
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...
- 4 years ago
Anonymous Try:
CALCULATE (
[x],
ALL(Table2),
Table1[A] in ALL(Table2[Z])
)
Anonymous
4 years agoNot applicable
Greg_Deckler
It gives an error: The VALUES function expects a column reference expression or a table reference expression for argument '1'
Greg_Deckler
Community Champion
4 years agoAnonymous Try:
CALCULATE (
[x],
ALL(Table2),
Table1[A] in ALL(Table2[Z])
)