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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Bubskim
Contributor II
Contributor II

getting all counts for different data in a text box or stat box

Hi all,

 

Please help.

it looks like I can only do one text box at a time for counts. 

I am attempting to create some kpis on the text box as to the count of dl. sent by, subject

1 Solution

Accepted Solutions
lockematthewp
Creator II
Creator II

You can put multiple counts in one text box.

='A = ' & count(A) & chr(10) & 'B = ' & count(B)

the & is used to concatenate. and the chr(10) is a new line character. 

View solution in original post

1 Reply
lockematthewp
Creator II
Creator II

You can put multiple counts in one text box.

='A = ' & count(A) & chr(10) & 'B = ' & count(B)

the & is used to concatenate. and the chr(10) is a new line character.