Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Update please check now
Write like below and remove = sign from the Count statement
='TimeStamp '&Count (TStamp)
Or
='TimeStamp ='& Count (TStamp)
Regards
='Count ' & count(TStamp)
Hello John,
I invite you to try with the following:
='Count = ' & Count(TStamp)
Regards,
Philippe
='Count = ' & num(Count(TStamp), '#,##0')
Concat('Count = ',Count(TStamp))