Hello forks,
I am trying to loop through the list and contact the string but it only reads the first value in the list.
Is there a workaround?
Here's the code:
dt = current data table();
//List 1
uniq = {"S", "V"};
//list 2
binnaming = {"Dummy", "Sigma"};
Loop through the list to concede the strings and write to the data table rows
For( i = 1, i <= N Items( uniq ), i++,
:Column 1[i] = "BIN = \!"" || Substr( Char( uniq( i ) ), 3, 1 ) || "\!" " || " \!"" ||
Substr( Char( binnaming( i ) ), 3, Length( binnaming( i ) ) - 3 );
);