Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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)