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: 
Not applicable

Labeling my formula

hi their. i need help with labeling my text box formula to read as "Total Population = 50586757" without using two seperate text boxes. but i don't know the procedure to connecting the two."Total Population=count()

Labels (1)
2 Replies
erichshiino
Partner - Master
Partner - Master

Hi,

It is:

='Total = ' & sum( population)

The part sum (population) will depend on your data model and field name (it could be count(id), for example)

You may even format the number part:

='total ' & num( 10000, '#,##0', '.',',')

Where '#,##0' is the mark of your number format

Hope this helps,

Erich

Not applicable
Author

Erich Thanks it Worked.