Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Slicer to include or exclude rows with specific text

Hello, I have the following table and i am trying to make a slicer that would show a checkbox with the two options: "Yes" or "No". The selection in the checkbox would either show all rows including,...
  • TheoC's avatar
    4 years ago

    Hi Anonymous 

     

    You can create a calculated column that you can then use for the slicer.  Just create a conditional formula to use in the calculated column like the following:

     

    Slicer = 

    SWITCH (
    TRUE () ,
    'Table'[Text] = "not received _ no group" , "Yes" ,
    "No"
    )

    You can then use the new calculated column to create the Slicer you want 🙂

     

     

    Hope this helps!

    Theo