cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

How can I open a JMP file without leaving a record in the From list?

For example, open "Big class.jmp ",


Can add code to JSL's open code to keep it out of the From list?Or use JSL later to delete "Big Class.jmp"'s records from the From list?

Thanks!

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

2020-07-19_18-13.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
Craige_Hales
Super User

Re: How can I open a JMP file without leaving a record in the From list?

I think this is what you are asking about. I find it really useful when I'm opening a lot of files, it prevents the ones I care about from falling off the bottom of the list!

Add To Recent option in Open( ) functionAdd To Recent option in Open( ) function

Craige

View solution in original post

3 REPLIES 3
Craige_Hales
Super User

Re: How can I open a JMP file without leaving a record in the From list?

I think this is what you are asking about. I find it really useful when I'm opening a lot of files, it prevents the ones I care about from falling off the bottom of the list!

Add To Recent option in Open( ) functionAdd To Recent option in Open( ) function

Craige
lwx228
Level VIII

Re: How can I open a JMP file without leaving a record in the From list?

Thank Craige!

dt1 = Open( "$SAMPLE_DATA/Big Class.jmp",Add to Recent Files(0) );
gzmorgan0
Super User (Alumni)

Re: How can I open a JMP file without leaving a record in the From list?

Another option, especially if you are scripting, is to open the file as Private. Then the file does not appear in the From list nor the Windows List.

 

 

Recommended Articles