Here is a script trying to save a data table in a Journal and then from the Journal the data table is saved into a MS word document. One preference is to run the Journal part in the background. Among the scripts, only the Save MSWord part works
To name the Journal:
Set Name is not working.
To hide the Journal in the background:
Neither (Invisible) nor Close () is working.
Thank you for your help!
dt = current datatable ();
dt2 = dt << Journal (invisible);
dt2 << set name ("test1");
dt2 << Save MSWord( "$Desktop/jmp_example.doc" );
close (dt2);