if "compare" column value is greater than 100%, then change the value to 100%, if less than or equal to 100%, then keep the value no change
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Column( "Compare", Numeric, "Continuous", Format( "Percent", 12, 0 ), Fo
...