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

In evaluation of glue ?

XiangCD_MP_User
Level IV

Hi,

 

I was just writing a simple code but I ran into preview text error: Unable to open file, in access evaluation of "Glue"

 

Can anyone advise me on the thing I didn't do correctly?

dt = Open (); //open a csv or excel file from any folder
Sa = Current data table ();

 .... ... ...  

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User


Re: In evaluation of glue ?

I suspect you have objects in your JMP memory area that have not been cleared.  I have 2 suggestionsw.

  1. Close and restart your JMP session
  2. Isolate the memory for your JSL by adding Names Default to Here(1); to your JSL.  That will insure that your JSL will be in it''s own memory NameSpace 
    Names Default To Here( 1 );
    dt = Open(); //open a csv or excel file from any folder
    Sa = Current Data Table();
Jim

View solution in original post

3 REPLIES 3
txnelson
Super User


Re: In evaluation of glue ?

I suspect you have objects in your JMP memory area that have not been cleared.  I have 2 suggestionsw.

  1. Close and restart your JMP session
  2. Isolate the memory for your JSL by adding Names Default to Here(1); to your JSL.  That will insure that your JSL will be in it''s own memory NameSpace 
    Names Default To Here( 1 );
    dt = Open(); //open a csv or excel file from any folder
    Sa = Current Data Table();
Jim


Re: In evaluation of glue ?

I tried the second suggestion, but the problem still persisted. I'll check on the 1st one then. 


Re: In evaluation of glue ?

Alright, I tried the first option and it worked fine ! Thanks again @txnelson