Hi
If the X column is the first column, you can use this Labtalk script as following to get the minimum value of others columns to the X column.
1. Select "Window: Command Window" in the menu. 2. Copy this script to the Window, and run it.
// BEGIN SCRIPT for( int ii = 1 ; ii < wks.ncols; ii+=1) { wks.col = ii; [book1]!Cell(ii,1)=min(wcol(ii+1)) ; }; // END SCRIPT
Jacqueline Originlab |