Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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)))