Hello,
Is there a way to add a custom formula and column to the tabulate window?
![Jackie__0-1730670812012.png Jackie__0-1730670812012.png](/t5/image/serverpage/image-id/69763iB2F1326CA5D82F26/image-size/medium?v=v2&px=400)
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.
![Jackie__1-1730670999012.png Jackie__1-1730670999012.png](/t5/image/serverpage/image-id/69764i817BD4B1583A1EE5/image-size/medium?v=v2&px=400)
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!