How do I input different values for each JMP file using a script?
open=("C:\source\new.jmp);
For (
i=1,
i<= nitems(files),
i++,
data table("new")<<new column("month",charcter,formula(eval("Jan")));
);
I know that the above script is wrong, and I wrote it as a rough example.There are 3 JMP files of the same type in the source folder.After creating a new column using the For SCRIPT
I want to put January, February, and March in the file order.I need help figuring ou...