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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenate ' & Value & '

Hi,

Was trying to have a text value using concatenate operator -"&"

If Value = ABCD

and I want it to show like 'ABCD'

How do I do this ? if i do ='''&'ABCD'&''' it does not work.

Thanks,

Chinmay

Labels (1)
1 Reply
maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Use the

=



chr(39) & 'ABCD' & chr(39)

to print 'ABCD'

Thaks

Manesh