2.5.1.5 From Script Panel

The Script Panel (accessed via the context menu of a Workbook's title bar) is a hybrid of the Script Window and Command Window.

// Scale column 2 by 10
col(2)*=10;

// Shift minimum value of 'mV' column to zero
stats col(mV);
col(mV)-=stats.min;

// Set column 3 to column 2 normalized to 1
stats 2;
col(3) = col(2)/stats.max;