Forum Discussion

dokat's avatar
dokat
Post Prodigy
4 years ago
Solved

Slicer Select all option while excluding one value

Hi, I am trying to create a slicer and have select all option but want to exclude one value from the selectall.   Here are the four values for the sicer.  I'd like to have select all options only ...
  • bcdobbs's avatar
    4 years ago

    You can't make a slicer default to only certain values when you click Select All.

    However you could build the logic into a measure:

     

    Sum Of Amount (Special Slicer) = 
        IF ( 
            ISFILTERED ( Sales[Item Type] ),
            SUM ( Sales[Amount] ),
            CALCULATE ( 
                SUM (Sales[Amount] ),
                Sales[Item Type] <> "Maintenance"
            )
        )


    Example File

  • dokat's avatar
    dokat
    4 years ago

    bcdobbs I just downloaded your file and it's working however when i applied to my report it is not. Logic is solid and makes sense not sure why but it is not working on my end.

    Here is the code i am using.

    Special Slicer TY = 
        IF ( 
            ISFILTERED ( 'POS CY'[Slicer]),
             [POS TY],
            CALCULATE ( 
                [POS TY],
                'POS CY'[Slicer] <> "Maintenance"
            )
        )