Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
prat1507
Specialist
Specialist

Show values greater than 100 as 100+ in pivot table and retain the sum of the column

Hi

As clear from the subject, I need to Show values greater than 100 as 100+ in pivot table and retain the sum of the column.

Thanks in advance

Regards

Pratyush

1 Solution

Accepted Solutions
sunny_talwar

May be this

If(Dimensionality() = 0, Sum(Measure), If(Sum(Measure) > 100, '100+', Sum(Measure)))

View solution in original post

2 Replies
MK_QSL
MVP
MVP

Can you clarify ?

I need to Show values greater than 100 as 100+ in pivot table and retain the sum of the column

sunny_talwar

May be this

If(Dimensionality() = 0, Sum(Measure), If(Sum(Measure) > 100, '100+', Sum(Measure)))