N Table
Summary: Opens two data tables and counts the number of tables after opening.
Code:
dt = Open( "$SAMPLE_DATA/Students1.JMP", invisible );
dt2 = Open( "$SAMPLE_DATA/Students2.JMP", invisible );
afterOpen2 = N Table();
Code Explanation:
- Open data table;
- Open data table;
- Count tables after opening.