Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Cannot access qvw but you may try the chr(39) like this -
='Sales company d' & chr(39) & 'Harcot country XX'
Cannot access qvw but you may try the chr(39) like this -
='Sales company d' & chr(39) & 'Harcot country XX'
check now
Try this
='Sales company d'&chr(39)& 'Harcot country XX'
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
Thanks, it works.