Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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.