Hi Folks,
I am trying to figure out a way to check if a user defined function exists before calling it. Is there a way to do this check in JMP?
Eg:
user_func.jsl:
user_func = Function ({},{},
.....
);
Main.jsl:
Include("C:\Documents\user_func.jsl")
.
down in the code
.
.
??How to check if user_func exists??