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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
sergio0592
Specialist III
Specialist III

Issue with quote in title

Hi all,

I'am facing an issue, simple in apparence but i can't manage to fix it. What i'am trying to achive is to put quote when i have a title eg (see the attached .qvw).

what i have : Sales company d Harcot country XX

Expected : Sales company d'Harcot country XX

Thanks

1 Solution

Accepted Solutions
Digvijay_Singh

Cannot access qvw but you may try the chr(39) like this -

='Sales company d' & chr(39) & 'Harcot country XX'

View solution in original post

5 Replies
Digvijay_Singh

Cannot access qvw but you may try the chr(39) like this -

='Sales company d' & chr(39) & 'Harcot country XX'

Chanty4u
MVP
MVP

check now

shiveshsingh
Master
Master

Try this

='Sales company d'&chr(39)& 'Harcot country XX'

tamilarasu
Champion
Champion

Hi Jean-Baptiste,

You can use single quotes two times like below. Note that it is not a double quote.

='Sales company d'' Harcot country : '&Country

Capture.PNG

sergio0592
Specialist III
Specialist III
Author

Thanks, it works.