Hi, I am currently working in an environment which (for further processing) requests the SAS graphics either in a catalog (as with the former PROC GPLOT) or if not, then a file with extension .eps. But I want to create my graphics with PROC SGPLOT (SAS 9.2 is available). But I dont seem to get my figure from SGPLOT with ODS GRAPHICS into a File as "figurename.eps" . The nearest I got was the following code, but when I try to view my .eps file for example with Word, then only "codetext" is shown. goptions reset=all device=sasprtc vsize=5in; ods listing close; ods printer printer="PostScript EPS Color" file="&path/figurename.eps" startpage=never; run; ods graphics on; proc sgplot data=aaa; ... some statements ; run; ods graphics off; run;quit; ods printer close; ods listing; I tried also with ODS HTML and device=eps, but that didnt work at all. I always got the following message: WARNING: Unsupported device 'EPS' for HTML destination. Using default device 'PNG'. WARNING: tagsets.HTML4 destination does not support EPS images. Using the default static format. Any Ideas what I am doing wrong? Would it be possible to get the ODS GRAPHICS into a catalog? I am not very familiar with the two graphic worlds, least of all their differences ... If I dont find a solution, I will have to re-pogramm my figures with PROC GPLOT. Daniela
... View more