Creating a column in a loop with a variable in the formula.
Hello,
I have been trying to create new columns inside a loop with a couple of variables in the formula. The variables are column names that I am trying to subtract. I have read similar threads with people having a similar issue but none of those solutions have worked in my case. A snippet of my loop:
for (i=1, i<=n, i++,
S="Mean("||vars[i]||")";
S2="Wafer Mean("||vars[i]||")";
ddt << Update
...