Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Single Quote in Editor

I have to put a condition on text which itself contains a single quote. IF(column='Text's',true,false). How do I accomplish that? I tried enclosing single quote with double quote, but it did not work. Any idea?

Thanks,

Dinesh.

1 Solution

Accepted Solutions
Not applicable
Author

Try it with the ascii value for a single quote:

if (column= 'text' & chr(39) & 's', true, false)

Regards,

Gordon

View solution in original post

2 Replies
Not applicable
Author

Try it with the a

Not applicable
Author

Try it with the ascii value for a single quote:

if (column= 'text' & chr(39) & 's', true, false)

Regards,

Gordon