Forum Discussion

erwink's avatar
erwink
New Member
9 years ago
Solved

Visual level filter on Slicer

Hi all,   I have read several threads about this subject and all had a "solution" which was a "hack". This "hack" is not working anymore. I would really want to be able to use the slicer control W...
  • Eric_Zhang's avatar
    9 years ago

    erwink wrote:

    Hi all,

     

    I have read several threads about this subject and all had a "solution" which was a "hack". This "hack" is not working anymore.

    I would really want to be able to use the slicer control WITH a visual level filter to reduce the number of items in the list based on a filter (in this case a measure > 0).

    Haven't found a good solution for this and not sure if there is. Hopefuly i am wrong?!

     

    Is there some place where we can put it on a requirements list?

     


    erwink

    I think you can check this idea Apply filter to slicers and vote it up. As a workaround, maybe you can create a calculated table containing the filtered slicer's values and create proper relationship to the table you'd like to slice.

     

    slicerTBL =
    FILTER (
        VALUES ( yourTable[sliceCol] ),
        yourTable[sliceCol] <> "A"
            && yourTable[sliceCol] <> "B"
    )