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: 
alan_grn
Creator II
Creator II

Display number of rows returned in a pivottable

I am planning on having a text object which displays the total numebr of rows in a pivot tbale. How is this best done?

2 Replies
Anonymous
Not applicable

You could consider to use a statistics box for totals etc ...

Here you can select the field you want to sum / count / avg .. .etc .

Ofcourse you can also use a textbox with an expression ...

e.g.


='Amount: ' &
Money
(
(
count ( {$< [Calls.SO]= {ERROR} >}Serviceordernr)
-
count ( {$< [Calls.SO]= {ERROR} , Article.Category = {TERMINAL} >}Serviceordernr)
)
* vAmountVisit
,'€ #.##0,00;€ -#.##0,00')
& chr(10)


Hope this helps you on your way

Anita

alan_grn
Creator II
Creator II
Author

Thanks. That works