How could I save multiple open .jmp data tables as .csv files?
As a result of table subset I have multiple .jmp data tables that I need to save as .csv files. I have tried a script for saving all opened tables but I only can make it work for saving as .jmp files.openDTs=List ();For (i=1, i<=N Table (), i++, Insert Into (openDTs, Data Table (i)););For(i=1, i<=N Items(openDTs),i++,openDTS<<Save(););From the subset operation I will have a large number of tables ...