Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I Need to create a string variable that includes the character ', for example:
Let vCSAC='{$<Dept={'A','B','C'}>}';
can anyone assist
Try this
LET vCSAC = '{$Dept={' & chr(39) & 'A' & chr(39) & ',' & chr(39) & 'B' & chr(39) & ',' & chr(39) & 'C' & chr(39) & '}>}';
Try this
LET vCSAC = '{$Dept={' & chr(39) & 'A' & chr(39) & ',' & chr(39) & 'B' & chr(39) & ',' & chr(39) & 'C' & chr(39) & '}>}';
Use Set instead of Let:
Set vCSAC1= {$<Dept={'A','B','C'}>};