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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Displaying text value with Sum value in Text box

 

Hi QV

I want  to show the sum of values in text box text (likeNo Of Receipts--250)......will it work??

No Of Receipts &'-'& Sum(RECEIPT_CNT)

1 Solution

Accepted Solutions
Not applicable
Author

= 'No Of Receipts' &'-'& Sum(RECEIPT_CNT)

This will work

View solution in original post

4 Replies
Not applicable
Author

= 'No Of Receipts' &'-'& Sum(RECEIPT_CNT)

This will work

Not applicable
Author

can we use multiple fileds like below??

 

='OTD%' &'-'& Sum(MET_OTD_RQST_CNT), 'Short Cycle%' &'-'& Sum(SHRT_CYC_CNT) , 'Request Met' &'-'& Sum(MET_RQST_CNT)

getting some garbage after expression issue.

Not applicable
Author

got it tnax

 

=('OTD%' &'-'&

Sum(MET_OTD_RQST_CNT) &'-'& 'Short Cycle%' &'-'& Sum(SHRT_CYC_CNT) &'-'& 'Request Met' &'-'& Sum(MET_RQST_CNT) )

anbu1984
Master III
Master III

Yes you can. But use ampersand instead of comma

='OTD%' &'-'& Sum(MET_OTD_RQST_CNT) & 'Short Cycle%' &'-'& Sum(SHRT_CYC_CNT) & 'Request Met' &'-'& Sum(MET_RQST_CNT)