Cynthia, Thank you so much for your help/suggestions! I'm running JMP 9.0.2 together with PC SAS 9.1. The Journal style might do the trick. Now if I can only please my pesky users... I took a look at all available styles using this program: SAS Connect(); SAS Submit( "*ODS_Style_Output.sas -- program to create examples of all SAS ODS styles; *modified by Elizabeth A. Swoope, Louisiana State University; *source of original program lost; *found at sastips.com, which is no longer a SAS web site; filename list catalog 'work.temp.temp.source' ; proc printto print=list new ; proc template ; list styles ; run ; proc printto ; data _null_ ; length style $ 17 ; infile list missover ; input @'Styles.' style ; if style>' ' ; * create a folder for the files, then change the drive/folder below; call execute('ods rtf file=\!"c:\ODS_test\'||strip(style)||'.rtf\!" style='||style||';') ; call execute('title \!"'||style||'\!";') ; call execute('proc means data=sashelp.class maxdec=2; run ;') ; call execute('ods rtf close'||';') ; run ;"); The code in the Submit block can be of unlimited size, btw. Regards, Peter
... View more