Hi,
I am following the very first example on "hello world' in JMP scripting basic and has encountered error.
script:
for(i=1, i<5, i++,
X=i;
A="Hello, World";
print(X,A));
print("done");
error:
Cannot set value for the column 'X' because the row number (-1) is not valid.
Can anyone enlighten what is wrong with the script?