Forum Discussion
cosminc
7 years agoPost Partisan
Filter Context
Hi all the filters applied on page level are considered as Filter Context and can be overwritten on a calculate dax expression? Thanks, Cosmin
- 7 years ago
So you will need to modify the measure to use ALLEXCEPT and list the columns you would still like to be able to use in the slicers. The measure below will respect selections on the Client, Slicer1, Slicer2 and Slicer3 columns
Funnel Rate = CALCULATE( COUNTROWS(Source_full), ALLEXCEPT( Source_full, Source_full[Client], Source_full[Slicer1], Source_full[Slicer2], Source_full[Slicer3] ), Source_full[Label] = "A")
jdbuchanan71
7 years agoSuper User
That is what my measure returns. What should the table look like if you pick Client = 'cosmin'?
cosminc
7 years agoPost Partisan
B 2
C 2
D 2
Z 2
- cosminc7 years agoPost Partisan
Thanks for your help!
Cosmin
- jdbuchanan717 years agoSuper User
So you will need to modify the measure to use ALLEXCEPT and list the columns you would still like to be able to use in the slicers. The measure below will respect selections on the Client, Slicer1, Slicer2 and Slicer3 columns
Funnel Rate = CALCULATE( COUNTROWS(Source_full), ALLEXCEPT( Source_full, Source_full[Client], Source_full[Slicer1], Source_full[Slicer2], Source_full[Slicer3] ), Source_full[Label] = "A")