T O P I C R E V I E W |
jqian |
Posted - 10/15/2021 : 12:25:56 PM Origin Ver. 2021b
Could you please let me know how to export all data books to .dat or .asc files?
Thanks!
|
3 L A T E S T R E P L I E S (Newest First) |
snowli |
Posted - 10/15/2021 : 2:12:16 PM You can use this instead. It used expASC xfunction in Origin. It has option to save short name, long name, comments, etc. of data.
U can choose File: Export: ASCII to customize export setting and also click > next to dialog theme to generate script
doc -e w{ expASC path:="C:\tmp\%H.dat";
}
Thanks, Snow |
jqian |
Posted - 10/15/2021 : 1:57:55 PM I'm sorry. I do have a question.
Using the script as below:
doc -e W { save -wh %H c:\TEMP\%H.DAT; };
I can export data in ascii or dat format. But the saved ascii data have the columns' name A, B, C ... on the top of the data. Could you please let me know how to export data without the column names on top?
Thanks JQ
|
jqian |
Posted - 10/15/2021 : 12:44:29 PM I got it:
doc -e W {
save -wh %H c:\TEMP\%H.DAT;
};
|