1. Create your Tabulate output as you always have done.
2. Click on the "Done" button in the output to get rid of the Control Panel
3. Save the Script to a Script Window, by clicking on the red triangle and selecting
Save Script==>To Script Window
4. Add the following lines to the top of the script window
Names Default To Here( 1 );
nw = New Window( "Example",
5. Add the following lines to the bottom of the script
);
nw << save msword( "$TEMP/tab.doc" );
Open( "$TEMP/tab.doc" );
6. Change the location on lines 11 and 12
"$TEMP/tab.doc"
to where you want to save your MSWord Document to
7. Run the script by clicking on the icon with the green triangle in it at the top of the Script Window
This will save your Tabulate output to a Word Document. If you want to save multiple Tabulates at the same time, take a look at my previous example, and just add in the different scripts one after another, separated by a comma as in the example.
Jim