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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenating text and variables

I store time or time stamp values (field TStamp) in a list box. In its title, I want to show the string "Count" followed by the value of count like this -

Count = 4760

I tried some code which did not work

- TimeStamp & =Count (TStamp)

- 'TimeStamp' & =Count (TStamp)

Please help me.

5 Replies
its_anandrjs
Champion III
Champion III

Update please check now

Write like below and remove = sign from the Count statement

='TimeStamp '&Count (TStamp)


Or


='TimeStamp ='& Count (TStamp)




Regards

swuehl
MVP
MVP

='Count ' & count(TStamp)

pgrenier
Partner - Creator III
Partner - Creator III

Hello John,

I invite you to try with the following:

='Count = ' & Count(TStamp)

Regards,

Philippe

maxgro
MVP
MVP

='Count = ' & num(Count(TStamp), '#,##0')

anbu1984
Master III
Master III

Concat('Count = ',Count(TStamp))