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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Change Expression for TextBox Object

How do I change the following Expression of my TextBox Object so that the percentage has no decimals?

=Sum(Flag) &' (' & (sum(Flag)/sum({1}Flag))*100 &')' &'%'

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

Check with this,

     =Sum(Flag) &' (' & Num((sum(Flag)/sum({1}Flag))*100,0) &')' &'%'

Hope it helps

Celambarasan

View solution in original post

2 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

Check with this,

     =Sum(Flag) &' (' & Num((sum(Flag)/sum({1}Flag))*100,0) &')' &'%'

Hope it helps

Celambarasan

Anonymous
Not applicable
Author

Thank you, just what I needed.