07-31-2015, 05:37 PM
Please find the code.
Array A = {1;2;3}
Array B = {x,y,z;a,b;v,f,g,h}
Array A = {1;2;3}
Array B = {x,y,z;a,b;v,f,g,h}
Code:
sFirstArraySpilt = Split(A,";")
sSecondArraySplit = Split(B,";")
For I=0 to UBOUND(sFirstArraySpilt)
sSecondArrayValues = sSecondArraySplit(I)
'Here sSecondArrayValues contains the values separated with commas ex: x,y,z for the first value in Array A
Next