How to append data to a file without opening it?
I need to append new data to a file on a weekly basis. Is there a way for me to do so without opening/loading the file in JMP script? dt = open("my.csv");
dt<< Concatenate(Data Table ("New data") , append to first table);
dt << Save("my.csv", Replace(1)); Thanks!