Forum Discussion
Anonymous
2 years agoNot applicable
Measure as a drop down slicer
Hi,
There is a measure "TotalCost" which used in table visual along with few other columns. I want to filter the table visual by using the same measure in dropdown slicer with multiselect opti...
Anonymous
2 years agoNot applicable
I have tried to change the "Measure Filter" like this:
Measure Filter =
VAR SlicerValue = SUMMARIZE('Slicer Measure','Slicer Measure'[TotalCost])
VAR CurrentMeasureValue = [TotalCost]
RETURN
IF(
CurrentMeasureValue in
SlicerValue ,
1,
0
)
It gives me the expected result on the table visual but in the slicer there are few duplicated values. Can anyone suggest what need to do to remove these duplicate values in the slicer.
Thanks
- Anonymous2 years agoNot applicable
Anonymous Please try this one.
https://community.fabric.microsoft.com/t5/Desktop/Slicer-showing-duplicates/td-p/2871271