Hi Jim,
I have 200 columns. what I want to do :
1) select first row across specific set of columns from column 2 to column 193.
2) then apply select matching cell ()
3) last, delete all these matching cells that is across column 2-193.
below will work if I able to make the Go to (Column(2::193)). any suggestion?
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt << Select Rows([1, 2, 3, 4]);
dt << Go To(:Height);
Wait(2);
dt << Select Matching Cells();