Brandon,
You will need to set the boolean option for Invisible to 1.
Under help select scripting index. Type invisible in the search and look at the entry for ColBox for additional information.
See below for an example.
Stan
dt =Open( "$SAMPLE_DATA/Big Class.jmp");
fitModelPlt = Fit Model(
Y( :height ),
Effects( :age, :weight ),
Personality( Standard Least Squares ),
Emphasis( Effect Leverage ),
Run(
:height << {Lack of Fit( 0 ), Plot Actual by Predicted( 1 ),
Plot Residual by Predicted( 1 ), Plot Effect Leverage( 1 )}
),
Where( :sex == "F" )
);
fitRpt = Report (fitModelPlt)[Table Box(5)];
tbl = fitRpt << Make Combined Data Table (Invisible(1)) ;
tbl << Set Name("fit_estimates");