Calling column from column list in formula
I'm quite sure I will feel stupid after seeing the answers but I currently have a brain hang up. I want to refer to a column from a list of columns in a new formula in JSL (for later looping over the list). Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
mylist= dt<< Get Column Names();
dt << New Column( "myCol",
Numeric,
"Continuous",
Format( "Best", 12 ),
Formula(:height
...