Hi,
Is there any way to save a data table into Excel (.xlsx) format with scripting?
Go to Solution
The Save() function. Documentation and examples are at
Help==>Scripting Index==>Save
Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); dt << Save( "C:\Big Class.xlsx" );
View solution in original post