Hi RW9, First of all, thank you for your fast response. I have been trying both options you suggested with no success... For some reason the option gridded in the ods layout statement doesn't work for me (I don't know if it is a problem of the SAS version [9.2] or the package required for the statement, for example I have not the IML package). I'm trying to run the code: ods pdf file='Desktop\gridded.pdf';
ods layout gridded
columns=3 width=5in
column_gutter=.25in
style={background=lightgray};
ods region;
proc sgplot data=output_E;
series x=ORDEN_E y=E_original / lineattrs=(color=blue);
run;
ods region;
proc sgplot data=output_M;
series x=maturity y=M_original / lineattrs=(color=red);
run;
ods region;
proc sgplot data=output_V;
series x=ORDEN_V y=V_original / lineattrs=(color=green);
run;
ods layout end;
ods pdf close; And I get several errors when trying: I'm sorry about the mix of spanish and english in the log, hope they have fixed that in posterior SAS versions. Another point is that I would like to do this in the SAS Report format, because I don't need to create a file for the results. The greplay statement seems to have the same issue, that an output pdf file is required in order to show the results... I have tried to do it that way and I managed to show 6 graphs in 3 columns and 2 rows, but it is not very practical for my purpose... Anyway, thank you very much for your response!
... View more