JMP Script: Message with if condition
Hi all, I am trying to make a control chart based on a condition. However, I received a message when the condition Eval(Y) is not present in the without_limits list (else condition).Here is my program: If (Contains(without_limits,Eval(Y)),
graph=Control Chart Builder(
Variables(
Subgroup( :X ),
Y( Eval(Y) ),
Phase(:"Version")
)
),
graph = RAW_DATA_TABLE <<
Contro
...