3
I have the following values in a Stringlist :
1111,2222
3333,4444
I have another String list with values
7777,8888
9999,0000
I need to add the values of the second stringlist, concatenating at the same position in sequence of the first Example :
1111,2222,7777,8888
3333,4444,9999,0000
How do I add the content of the second data matrix in the first ?
Do you want to create a new list or change the first one? The two lists always have the same number of rows?
– EMBarbosa