Select all with multiple select on filters

I want to select all issue types from my issue type filter so that I can deselect only 2. Is there a way? Thanks.

You have two ways of doing it.

  1. Creating a specific aggregation of it. (It can be reused several times). See below example where I remove from my aggregation the Defect and Tasks, rest of my Issue Types will display under it, called “All Issue types except Defect-Risk” - for instance -.
Aggregate(
  Except(
    [Issue Type].[Issue Type].Members,
    {
    [Issue Type].[Defect],
    [Issue Type].[Task]
    }
  )
)
  1. Using it directly in the Filters of your report. (You will have to do it everytime you want to)

In the filter button, when you open it and it shows “All Issue Types”, just below it. It appears 2 buttons “Single” and “Multiple”. You only need to select the multiple and then select all of your desire options (remember to deselect the “All Issue types” first)