How can I add these issues together to clean up this table

Hi there,

I need some help trying to add these values together in the table so they would just be under and “other” field. Right now, because of the different ways to get issues into our queue, they come through as all different categorisations.

Hi @Sibel_Bjelke-Yilmaz
You can create two calculated members in your report, one with all “other” values and the second without “other” values.
Here is an example with my dimension “T-Shirt size”:
First:

Aggregate({
  [T-shirt size].[XL],
  [T-shirt size].[XXL]
})

Second:

Aggregate(
  Except(
    [T-shirt size].[T-shirt size].Members,
    {[T-shirt size].[XL],
     [T-shirt size].[XXL]}
  )
)

Then use them in the report, expand the one without ‘other’ values and remove the upper value if you want to see each member there:

best,
Gerda // support@eazyBI.com