- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Cumulative report
Hi all,
I am currently running some data in JMP14, and what I need to do is to save all the data into one JMP file only. So for every run, the succeeding data will be added on the same file but not overwriting the file. It will look like cumulative report.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Cumulative report
The process wold look something like this:
Names Default To Here( 1 );
// Input your new data
dt = Current Data Table();
// Open the cummulative data table
dtCummulative = Open( "path to the saved cumulative data table" );
// Add the new data to the cumulative data table
dtCummulative << concatenate( dt, Append to First Table( 1 ) );
// Save the new version of the cummulative data
dtCummulative << Save( "path to the saved cumulative data table" );
// Delete the cummulative table from the JMP session
Close( dtCummulative, nosave );
Jim
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Cumulative report
The process wold look something like this:
Names Default To Here( 1 );
// Input your new data
dt = Current Data Table();
// Open the cummulative data table
dtCummulative = Open( "path to the saved cumulative data table" );
// Add the new data to the cumulative data table
dtCummulative << concatenate( dt, Append to First Table( 1 ) );
// Save the new version of the cummulative data
dtCummulative << Save( "path to the saved cumulative data table" );
// Delete the cummulative table from the JMP session
Close( dtCummulative, nosave );
Jim