Forum Discussion
Filter Context
- 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")
Give this a try cosminc
Funnel Rate =
CALCULATE(
COUNTROWS(Source_full),
ALL(Source_full),
Source_full[Label] = "A"
)
thanks
it freezes any slicer...i need to be interactive with all slicers
- jdbuchanan717 years agoSuper User
Doesn't your first measure do that? I thought you wanted all "A" regardless of other filters which is what my measure does. What should your example look like with a filter applied and what is that specific filter. What should the table look like if you pick Client = 'cosmin'?
- cosminc7 years agoPost Partisan
no, the first measure doesn't put result of A (=4) on each listed Labels in graph
- jdbuchanan717 years agoSuper User
That is what my measure returns. What should the table look like if you pick Client = 'cosmin'?