Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I would like to know if it's possible to use an apostrophe in a valuelist.
I mean I want to use something like this: valuelist('lil'wayne','lil'pop')
I tried to use the chr(39) function like this : valuelist('lil'&chr(39)&'wayne','lil'&chr(39)&'pop') but it doesn't work
Does anybody have an idea ?
Try valuelist('lil''wayne','lil''pop')
CHR(96) will give you the grave accent (appears to the left of 1 on my UK keyboard)
EDIT: Or you can type the accent going the other way by holding down alt, typing 239 and letting go of alt. Chr(239) doesn't give the right char.