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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Johnnyg248
Contributor III
Contributor III

Straight Table Row Count

Trying to put row count of  straight table into title

How do I get the row count to be what is actually displayed in the straight table

I tried putting the following

='Query Results (' & (Count(email)) & ' Rows )'

If I export the straight table to excel it has 20654 records (not including the header row)

 

However

Query Results (1211 Rows) appears in title

 

Not sure where 1211 is coming from

 

 

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You will need to specify all the dimensions of your table as a concatenated string and use distinct. 

Count(distinct email & date & name)

assuming email, date, name are your dimensions.

-Rob

View solution in original post

3 Replies
bharathadde
Creator II
Creator II

Can you share your Excel File

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You will need to specify all the dimensions of your table as a concatenated string and use distinct. 

Count(distinct email & date & name)

assuming email, date, name are your dimensions.

-Rob

Johnnyg248
Contributor III
Contributor III
Author

Listing all dimensions  within the count(distinct) did the trick

 

Thanks!