Hide columns script
I tried this script to hide column no.1,2,3 but it only select the columns without hiding them. What did i missed?Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
c= dt << Select Columns( [1.2.3] );
c << Hide;