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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
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

1 Reply
maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Use the

=



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

to print 'ABCD'

Thaks

Manesh