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.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

How to Run JMP 18 script using JMP 16?

Azim
Level II

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? 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User


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...

-Jarmo

View solution in original post

4 REPLIES 4
jthi
Super User


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

-Jarmo
Azim
Level II


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?

jthi
Super User


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...

-Jarmo
Azim
Level II


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!