Column Name as Variable (Very Simple)
Dear All, I am struggling with a very simple problem. I need to select a column name using a variable. Please see below: List = {"A","B","C"};
For(
i=1,
i<=nitems(List),
i++,
Add Columns from Update Table( :Name(List[i]) )
);
However, JMP does not accept anything inside ":Name()" that isn't an explicit quoted string.. In fact, "List[i]" is a quoted string, but the code doesn't even run. H...