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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
ZachDev
Contributor II
Contributor II

how can i shoe X

Hi

I have field that calculates percentages.

Sometimes a result of 253,444 %. 

I want it to display 900%+ in such a situation.

 how can i do it in analyze sheet/UI?

Labels (1)
3 Replies
Vegar
MVP
MVP

Try this.

If ([DigitField]>900, dual('900+',900), [DigitField]) as [ModifiedDigit]

ZachDev
Contributor II
Contributor II
Author

I explained it differently, Maybe now it will be clearer

Vegar
MVP
MVP

900% = 9

Try this

If( [PercentMeasure] >9, '900+', [PercentMeasure])

or maybe this will work as well

rangemin([PercentMeasure], dual('900+',900))