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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

displaying count on the table box title

Hi,

Is it possible to display the count of total no. of rows in a table on the title?

I cannot use count(field1) for e.g. to display the count as it will just give the count of field1. I am looking for the count for the actual rows created.

1 Reply
hic
Former Employee
Former Employee

Count( field1 ) will indeed show the total count of records in the table - well, except for the records where field1 is NULL.

So if you use an expression

=Count( field1 ) + NullCount( field1 )

then you will have the number of records.

/HIC