cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
29755
Level II

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
txnelson
Super User

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

View solution in original post

1 REPLY 1
txnelson
Super User

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