- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to Run JMP 18 script using JMP 16?
I am currently using JMP 18. However, many of my colleagues are still using JMP 16 and they couldn't run my script. Some few colleagues have both JMP 16 and 18. They could run the script on JMP 18 but not on JMP 16.
How do I code this so that JMP 16 users can also run my script?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Run JMP 18 script using JMP 16?
Not to my knowledge. Either you have to know what has changed between JMP16 -> JMP18 and modify those. Or run it in JMP16 yourself and start debugging. Then modify the script in such a way that it works for both versions or add some If statements and use JMP Version() to check which JMP is being used (or create separate script for JMP16.
Some changes I can remember: JMP17 added For Each, Filter Each and Transform Each, there were some changes to classes if I remember correctly and some platforms have different structure...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Run JMP 18 script using JMP 16?
Depends on your code. There might be features that are missing from JMP16 that you have in JMP18
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Run JMP 18 script using JMP 16?
Is there a way to know? Or do I have to open and debug using JMP 16, then make changes to script spefically for JMP16?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Run JMP 18 script using JMP 16?
Not to my knowledge. Either you have to know what has changed between JMP16 -> JMP18 and modify those. Or run it in JMP16 yourself and start debugging. Then modify the script in such a way that it works for both versions or add some If statements and use JMP Version() to check which JMP is being used (or create separate script for JMP16.
Some changes I can remember: JMP17 added For Each, Filter Each and Transform Each, there were some changes to classes if I remember correctly and some platforms have different structure...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Run JMP 18 script using JMP 16?
Names Default To Here(1);
JMP Version ();
I used this at the very start of the script. It seems to work. Users with JMP16 can run my script. Thanks!