Hello,
Is there a way to add a custom formula and column to the tabulate window?
Eg: I want to add LSL, USL, and Cpk columns to the tabulate window, not the data table box.
Any suggestions on how to do this would be appreciated.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
(Data Table( "Semiconductor Capability" ) << Tabulate(
Add Table(
Column Table( Grouping Columns( :lot_id ), Statistics( Mean, Std Dev ) ),
Row Table( Analysis Columns( :NPN1, :PNP1, :PNP2, :NPN2, :PNP3, :IVP1 ) )
)
)) << Make Into Data Table;
Thank you!