To make sure that we are fully understanding each other, in regards to columns and rows. In the Amplitude 21 data table, there are 4 columns(Labels, Amplitude, x, y) and 21 rows. Therefore your question
"How can I apply these in multiple columns? with different set of limits"?
You would just create an additional column. If you wanted to apply limits to both Column Amplitude and Column X it would look like this
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Amplitude 21.jmp" );
New Column( "Pass/Fail",
Character,
formula( If( 4 < :amplitude < 6, "Pass", "Fail" ) )
);
New Column( "Pass/Fail X",
Character,
formula( If( 0.5 < :x < 2, "Pass", "Fail" ) )
);
Jim