Hi,
I am using proc sgplot to generate graphs and trying to save the generated graphs using ods listing. The generated graphs are then imported into excel using DDE.
My current problem is that an increment number is automatically appended at the end of the file name (e.g., filename.png for the first time execution, filename1.png for the 2nd time execution, and so forth). Anyone knows how to surppress this setting? By the way, I am on 9.4.
The following is how my code looks like:
goptions reset=all gsfmode=replace; ods graphics/imagename="MSS_freq" Imagefmt=PNG ; ods listing gpath="C:\temp";
proc sgplot;
<snip>
Thanks ahead,
C.
... View more