I guess my problem can be solved pretty easily.
I want to write a function, that either returns a list of row-numbers or NULL in dependency of an if-clause inside my function.
How can I handle multiple return values and how can I return NULL?
My function should look somehow like this:
myFunction = Function( {...}, {...},
list = { ... };
if(...)
then return list
else return NULL
);
I have already found this tutorial:
https://community.jmp.com/message/25472#25472
but what if I have multiple return values, like:
return1=...
return2=...
how do I handle these, and how do I return NULL then?
Thank You for your help!