How to get a pass_fail column
I'd like to get a pass_fail column, and @txnelson made it to script.But, this script does not work if any of the many columns do not have a spec in the middle. How can i fix it?Names Default To Here( 1 );
dtOrig = current data table();
colNamesList = dtOrig << get column names( continuous, string );
// Create a work table of just the continuous columns
dt = dtOrig << subset( columns( colNamesLis...
vince_faller