Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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.