- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
In evaluation of glue ?
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: In evaluation of glue ?
I suspect you have objects in your JMP memory area that have not been cleared. I have 2 suggestionsw.
- Close and restart your JMP session
- 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
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: In evaluation of glue ?
I suspect you have objects in your JMP memory area that have not been cleared. I have 2 suggestionsw.
- Close and restart your JMP session
- 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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: In evaluation of glue ?
I tried the second suggestion, but the problem still persisted. I'll check on the 1st one then.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: In evaluation of glue ?
Alright, I tried the first option and it worked fine ! Thanks again @txnelson