cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

Get list of All Table Scripts

uday_guntupalli
Level VIII

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