I spent a lot of time trying to create a simple "Select Where()" statement in JMP, and it was not working.
Here's the line of code I was trying to use:
| dtData << select where(yParamList <= minLimList); |
yParamList is a valid column
minLimList is a valid number
After reading some of these forums, I found someone suggesting to put it all in a string and then parse it out, so i changed the above code to this:
| select_string = "dt << select where(" || ":" || yParamNames || " < " || char(minLimList) || ");"; |
| eval(parse(select_string)); |
yParamNames is just a name version of the yParamList from the original code.
My question is, why doesn't my original code work?
Here's the link where it was suggested to use the string, and eval(parse(string));
Thanks