BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
karlbang
Obsidian | Level 7

I am trying to save ouput from proc sgrender as a png file with specified filename. I can get SAS to save it with generic filenames like SGRENDER17.png using

 

ods html gpath='..';

but cannot get anything out of

 

filename grafout "c:\dropbox\FIG1A.png";
goptions reset=all gsfname=grafout gsfmode=replace device=png;
proc sgrender data=GRM template=GRM;
run;
filename grafout clear;

what am I doing wrong ?

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

Instead of GOPTIONS, use the ODS GRAPHICS statement:

 

ods graphics / reset outputfmt=png imagename="MyName";

 

 

View solution in original post

5 REPLIES 5
DanH_sas
SAS Super FREQ

Instead of GOPTIONS, use the ODS GRAPHICS statement:

 

ods graphics / reset outputfmt=png imagename="MyName";

 

 

karlbang
Obsidian | Level 7

where would the file then be located? Can't find it anywhere

DanH_sas
SAS Super FREQ

It gets written to your GPATH or PATH (if GPATH not specified).

RyanHoward
Calcite | Level 5
Thank you. I have searched a solution to this problem many times. This was really helpful.

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 2718 views
  • 0 likes
  • 3 in conversation