Origin Ver. 7.5 and Service Release (Select Help-->About Origin): Operating System: XP prof.
I have been wondering for a long time whether it is possible to export (not import) many files- let say all the worksheets in a project in one go. I have many- hundreds and would like to export them after having manipulated them in Origin. Are there any script that can do that?
I am trying to export a lot of data simulatenously (all worksheets to ascii files) I have tried the above mentioned script but it does not work. What I do is to execute the following commands in the script window:
// Setup the WKS.EXPORT object wks.export.c1 = 1; wks.export.c2 = 0; // All columns wks.export.r1 = 1; wks.export.r2 = 0; // All rows wks.export.separator$ = "\t"; // Use TAB separator wks.export.cntrl = 7; // Export Column Names + Data + Column Labels // Loop over al worksheets in the project doc -e W { save -wh %H D:\TEMP\%H.DAT; // -wh uses WKS.EXPORT object }
How do I implement it in Origin 7/7.5? Could I export certain coumns lets call them Q, Icorr and dIcorr ?