Hello,
my list of dataColName contains the column headers that I want to use as variables for process capability.
dataColName = dt_data << GetColumnNames( Numeric, String );
repWin = New Window( sTableName, container = V List Box() );
For( k = 1, k <= N Items( dataColName ), k++,
content = V List Box(
dt_data_sub << Process Capability(
//Process Variables( :Assay, :Dissolution, :Weight ),
Process Variables( dataColName ),
Individual Detail Reports( 1 ),
Capability Box Plots( 0 ),
Within Sigma Summary Report( 1 ),
Name( "AIAG (Ppk) Labeling" )(0),
Goal Plot( 0, Show Within Sigma Points( 1 ), Show Overall Sigma Points( 0 ) ),
{dataColName << Process Capability Analysis(
Overall Sigma Capability( 0 ),
Nonconformance( 0 ),
Histogram( 0 ))}
)
);
container << Append( content );
);
Why tells me the log:
"Specified Column not found in data table. in access or evaluation of 'List' , {/*###*/dataColName, k}
Process Capability cannot be launched because none of the processes can be found in the data table." ?
It works fine in
Control Chart (Chart Col (dataColName, ...
regards,
Uwe