Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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

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))