cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

Get list of All Table Scripts

All, 

     i know this is simple and there might exist a function. But I will go ahead and ask anyways. 

     Is there a function that extracts all the saved scripts in a data table ? 

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

dt << Get Property List(); // I was hoping this function does that 

    

 

Best 

uday 

 

Best
Uday
1 ACCEPTED SOLUTION

Accepted Solutions
uday_guntupalli
Level VIII

Re: Get list of All Table Scripts

My bad - found it . Its called "Get Table Script Names" 

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
names = dt << Get Table Script Names;

 

Best
Uday

View solution in original post

1 REPLY 1
uday_guntupalli
Level VIII

Re: Get list of All Table Scripts

My bad - found it . Its called "Get Table Script Names" 

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
names = dt << Get Table Script Names;

 

Best
Uday

Recommended Articles