Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am using two variables which contains string values like
vFirst = 'A','B','C'
vSecond='D','E'
Now I want to concatenate these values into one variable (as vCombine ='A','B','C','D','E' ), for this I am using below statement in script:
Let vCombine = '$(vFirst)' & ',' & '$(vSecond)'
But it is showing Script Error message. Can any one help me.
Thanks in advance.....
Use set instead.
set vOne = 'A';
set vTwo = 'B';
set vThree = $(vOne) & $(vTwo);
etc
Hi,
You can try this script.
SET vFirst = 'A','B','C';
SET vSecond='D','E';
SET vCombine = $(vFirst),$(vSecond);
check out the attached test app
set vFirst = 'A','B','C';
set vSecond='D','E';
LET vcombine=vFirst&','&vSecond;
Hi,
Try
=vFirst &','& vSecond
and click ok
Hi
please try this expression
set vFirst = 'A','B','C';
set vSecond='D','E';
LET vcombine=vFirst&','&vSecond;