cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

Hierarchy of open Data Tables

How can I get a hierarchy of all open data tables: 
- subsets
- stacked / split table
- summary table

something like the tree structure in the main menu - or in the window list?

3 REPLIES 3
hogi
Level XIII

Re: Hierarchy of open Data Tables

in my last approach, I use @jthi 's trick to parse the enhanced log :
talk to enhanced log 


But maybe, there is a more clever approach, hacking the window list view?

Unfortunately:

hogi_0-1770036244269.png

... and the window list ist not listed in get Window List()

mmarchandFSLR
Level VI

Re: Hierarchy of open Data Tables

Or specify data tables in the Get Window List() function?

 

Names Default To Here( 1 );
open_tables = Get Window List( Type( "Data Tables" ) ) << Get Window Title;
mmarchandFSLR
Level VI

Re: Hierarchy of open Data Tables

Or

Names Default To Here( 1 );
open_tables = Get Data Table List();

Recommended Articles