Copy values from specific columns of an exiting data-table to another data-table while multiplying selected rows by a constant
I have been able to do the first part (copy) but I am struggling with the second (multiply) part. Any direction is appricated. My example script is below.
Names Default To Here( 1 );
bcdt = Open( "$SAMPLE_DATA\Big Class.jmp", invisible ); //load a data-table
myNewdt = New Table( "Parameters Table", //create a new data-table
Add Rows(8),
New Column( "Parameter" ),
New Column( "H", Numeric),
Ne
...