Hi,
I need some help figuring out difference details between two data tables. At a high level, if there is addition of new rows in New.jmp then I would like to save the new additions in a separate file.
I am using Jmp 12.2 and have the following so far using Compare Data Tables but it only provides info on whether there is a add or delete... would like to take this one step further.
If Compare Data Tables on Jmp 12 has limitations, then is there another way to extract differences between two data tables?
Thanks!
Names Default To Here( 1 );
dt = Open( "New.jmp" );
dtRef = Open( "Old.jmp" );
obj = dtRef << Compare Data Tables( Compare with(dt) );
mtx = ( obj << Get Difference Summary Matrix );