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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Kushal_Chawda

string representaion with single quotes

Dear QV Experts,

I have one Field having values A,B,C.... Some where I need to show these values by comma separated which I am able to do it with concat function as : Concat(Field,',')

Issue is: I want to display value as..  'A','B','C'.....(with single quotes)

Please let me know the work around

1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

you can use this formula

=chr(39) & Concat(Key,chr(39) & ',' & chr(39)) & chr(39)

View solution in original post

1 Reply
lironbaram
Partner - Master III
Partner - Master III

you can use this formula

=chr(39) & Concat(Key,chr(39) & ',' & chr(39)) & chr(39)