Using Update() to add new rows into main table
I am trying to update a table that sometimes contains new rows (based on an index). It seems that I need to use join, as the following does not seem to work (here, the index is name column). Names Default To Here( 1 );
dt1 = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt2 = New Table( "Little Class",
Add Rows( 3 ),
New Column( "name",
Character,
Nominal,
Set Values( {"ALICE", "NEW_NAME", "OTHER_
...