Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Cameron94
Partner - Contributor III
Partner - Contributor III

Help with Title expression

I am trying to show as follows: 

Data as of 11 oct 2020 as a title for a sheet for example 

I have managed to get this to work but when adding 'Data As of' it doesn't work. 

Expression I am using: ('Data as of'(vLoadDate,'DD.MMM.YY'))

I think I am doing something very small but cant figure it out.

 

Thanks. 

Labels (2)
1 Solution

Accepted Solutions
random_user_3869
Partner - Creator III
Partner - Creator III

Oh my bad i will correct what i said:

Basically if your output is 'Data as of 11 oct 2020'

and the output of your variable 'vLoadDate' is '11 oct 2020'

you should write it like this:

Option 1:

= 'Data as of'&chr(32)&'$(vLoadDate)' OR 'Data as of'&chr(32)&$(vLoadDate)

for your info chr(32) = space

and you should'nt add 'DD.MMM.YY' after your date variable as you already formatted it

 

View solution in original post

3 Replies
random_user_3869
Partner - Creator III
Partner - Creator III

Hello,

Instead of ('Data as of'(vLoadDate,'DD.MMM.YY'))

you should write 

 

('Data as of'&(vLoadDate,'DD.MMM.YY'))

Between the string characters and the variable you forgot to add '&'.

The same goes for set analysis.

Hope it helps

Cameron94
Partner - Contributor III
Partner - Contributor III
Author

Hi thanks for the help, I still get this message 

Cameron94_0-1665663463159.png

 

random_user_3869
Partner - Creator III
Partner - Creator III

Oh my bad i will correct what i said:

Basically if your output is 'Data as of 11 oct 2020'

and the output of your variable 'vLoadDate' is '11 oct 2020'

you should write it like this:

Option 1:

= 'Data as of'&chr(32)&'$(vLoadDate)' OR 'Data as of'&chr(32)&$(vLoadDate)

for your info chr(32) = space

and you should'nt add 'DD.MMM.YY' after your date variable as you already formatted it