Hi All - thank you in advance for your help
I am trying to save a finished tabulate report as a HTML file but it is not being saved.
I am using the below script:
dt1 = Open( "C:\***path***\Thermal_Test_results_DZ.csv" );
dt2 = dt1 << Tabulate(
Show Control Panel( 0 ),
Add Table(
Column Table( Statistics( N ) ),
Column Table( Grouping Columns( :BIN ) ),
Column Table( Grouping Columns( :BIN ), Statistics( Name( "% of Total" ) ) ),
Row Table( Grouping Columns( :PRODUCT ) )
)
);
rdt2 = (dt2 << report);
rdt2 << save HTML( "C:\***path****\TJRise_BIN_Summary.html" );
what am I doing wrong ?