Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
How can write a character ' (quote) in a object text.
Ex: L'Or
Thank All
It's chr(39). So it will be
='L' & chr(39) & 'Or'
It's chr(39). So it will be
='L' & chr(39) & 'Or'
Thank 1000