Formula Loop - variable columns
Hi, I have a problem with the script.
I get an empty column when I try to use the loop.When I don't use a loop, it's works.col = dt << get column names;
For(i = 1, i <= N Items(col), i++,
c = "c" || Char(i);
Eval(Parse(Eval Insert("^c^= column(dt,i)<<get values"))));
New Column( "Flag",
Character,
Nominal,
Formula(for(i=1,i<3,i++,
if(c2[i]>:LSL[i],"Pass","Failed"))));