BookmarkSubscribeRSS Feed
GPatel
Pyrite | Level 9

Where to find/locate code for %_sas_popchartsize and  %_sas_pushchartsize macro?

( One can find the code for %_EG_CONDITIONAL_DROPDS at support.sas.com\kb\38\454.html )

4 REPLIES 4
ChrisHemedinger
Community Manager

If you select File->Export->Export All Code in Project, the result *should* include all source code for any macros that your project tasks reference.

Chris

Become an Explorer! Join SAS Analytics Explorers to learn and complete challenges that earn rewards!
GPatel
Pyrite | Level 9

Chris,

I tired that. I don't see any source code for either %_EG_CONDITIONAL_DROPDS or %_SAS_POPCHARTSIZE.

ChrisHemedinger
Community Manager

Okay, here it is:

/* save the current settings of XPIXELS and YPIXELS */

/* so that they can be restored later               */

%macro _sas_pushchartsize(new_xsize, new_ysize);

  %global _savedxpixels _savedypixels;

  options nonotes;

  proc sql noprint;

  select setting into :_savedxpixels

  from sashelp.vgopt

  where optname eq "XPIXELS";

  select setting into :_savedypixels

  from sashelp.vgopt

  where optname eq "YPIXELS";

  quit;

  options notes;

  GOPTIONS XPIXELS=&new_xsize YPIXELS=&new_ysize;

%mend;

/* restore the previous values for XPIXELS and YPIXELS */

%macro _sas_popchartsize;

  %if %symexist(_savedxpixels) %then %do;

  GOPTIONS XPIXELS=&_savedxpixels YPIXELS=&_savedypixels;

  %symdel _savedxpixels / nowarn;

  %symdel _savedypixels / nowarn;

  %end;

%mend;

Become an Explorer! Join SAS Analytics Explorers to learn and complete challenges that earn rewards!
GPatel
Pyrite | Level 9

Thanks Chris. This is what I was looking for.


Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 4 replies
  • 3409 views
  • 0 likes
  • 2 in conversation