cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
kuanaunwei
Level III

Saving Data Table to Excel format

Hi,

Is there any way to save a data table into Excel (.xlsx) format with scripting?

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Saving Data Table to Excel format

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" );
Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: Saving Data Table to Excel format

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" );
Jim
kuanaunwei
Level III

Re: Saving Data Table to Excel format

Hi txnelson, thanks for the info. Didnt know it was so simple.