Find and replace data which contain certain value range in specific column in JSL
Hi! all, I would like to find and replace data which contain certain value range in specific column by using jmp scriptHowever, the code didn't take effect Here is my code that want to loop through the data in "mark" column and look for value that more than 1000 and substitute with 99Names Default To Here( 1 );
dt = Data Table( "studentmark" );
headerList = dt << get column names( string );
For(
...