Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
nickedw0
Creator
Creator

Combine reported dimension rows in straight table

I have a straight table showing the number of errors

Critical | 4

High    | 6

Med     | 3

Low      | 2

Pass    | 20

Dimension is errorType, Expression is Count of error.

How do I combine rows to end up with:

High & Crit | 10

Med | 3

Other | 22

1 Solution

Accepted Solutions
sunny_talwar

May be like this

Calculated Dimension

If(Match(errorType, 'Critical', 'High'), 'High & Crit',

     If(Match(errorType, 'Med'), 'Med', 'Other'))

Expression

Count(error)

View solution in original post

1 Reply
sunny_talwar

May be like this

Calculated Dimension

If(Match(errorType, 'Critical', 'High'), 'High & Crit',

     If(Match(errorType, 'Med'), 'Med', 'Other'))

Expression

Count(error)