Forum Discussion
michaelccdf
6 years agoHelper I
Remove a single filter from a table
I'm trying to remove just one filter (from the filter pane) from a table below. There are other filters from slicers that I would like to keep, thus I can't use ALL. I suppose I could use ALLEXCEPT...
- Anonymous6 years ago
Hi,
if you use calculate with all(columnname) then you release the filter on the column. (Only CALCULATE and CALCULATETABLE change the filter context)
so it would be something like:
calculate( "your calculation" like max(A) or sum(B),All(columnname)
)https://docs.microsoft.com/en-us/dax/calculate-function-dax
Anonymous
6 years agoNot applicable
Hi,
if you use calculate with all(columnname) then you release the filter on the column. (Only CALCULATE and CALCULATETABLE change the filter context)
so it would be something like:
calculate( "your calculation" like max(A) or sum(B),
All(columnname)
)
https://docs.microsoft.com/en-us/dax/calculate-function-dax