Hi,
In dialog, Origin does not support to export these texts automatically in the dialog.
I suggest you can use loop Labtalk script to export them.
1. Active the worksheet.
2.Copy the following script into Script Window (menu: Windows:Script Window)
for (ii=1; ii<=100; ii++)
{
wselcol mode:=skip sel:=1 skip:=ii-1 end:=ii+1;
expASC type:=text path:="D:\$(ii)" select:=1;
}
3. Highlight the script, press "Enter" key.
Then 100 text files will be exported to D disk, and auto name from 1 to 100.
And you update the path of the export script to change the folder.
To know more detail about the Labtalk script, plesae refer to these help pages:
Loop: https://www.originlab.com/doc/LabTalk/ref/For-cmd
Select Columns: https://www.originlab.com/doc/X-Function/ref/wselcol
Export Worksheet to ASCII: https://www.originlab.com/doc/X-Function/ref/expASC
Thanks
Jacqueline
OriginLab