Creating formula using dynamic variables in for loop
Hi All
I did that one time, and it was painfully but I lost the script and the memory of that. Below what I am trying to do:
Tweak_List = dt_Temp << Get Column Names("String");
For(i = 1, i <= N Items(Tweak_List), i++,
a = Left(Tweak_List[i], Length(Tweak_List[i]) - 1) || "Δ";
b = Tweak_List[i];
c = Left(Tweak_List[i], Length(Tweak_List[i]) - 2);
dt << New Column(Left(Tweak_List[i], Lengt
...