Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have below variable which will store following list.
vList variable:
Paris
Tokyo
New York
Expression: ='(' & Replace(Trim(vList), chr(10), '|') & ')'
results: (Paris|Tokyo|New York)
How can i change the expression so that my results looks like below:
required results: ("Paris"|"Tokyo"|"New York")
='("' & Replace(Trim(vList), chr(10), '"|"') & '")'
='("' & Replace(Trim(vList), chr(10), '"|"') & '")'