How to set object name based on table name?
I have several data tables with different names. I want to open the data tables and set the object name to be the same as the file name. Here's an idea of it. The end goal is to have an object called "Animals" that points to "Animals.jmp".Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Animals.jmp" );
Create Object (char(dt)) << dt;