SAS Enterprise Guide

Desktop productivity for business analysts and programmers
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DME790
Pyrite | Level 9

Hi All,

 

I would like to set the size of my graphs in ODS Excel.

 

The current out put sizes the graphs to 9.87cm x 14.99cm (3.88inch x 5.9inch)

I would like to set the graphs to 17cm x 26cm (6.6inch x 10.2inch)

 

I have used  both of the below to no avail.

ods graphics on / width=8in  height=4in;

goptions vsize=10cm hsize=20cm

 

%let DateVAR =  %sysfunc(intnx(day,%sysfunc(today()),-1),yymmddn8.);
ods excel file="/test/Testa&DateVAR..XLSX";
ODS EXCEL OPTIONS (EMBEDDED_Titles="YES" sheet_Interval="NONE");
ODS Excel Options (embedded_Titles="YES") NOGTITLE NOGFOOTNOTE;
ods graphics on / width=8in  height=4in;
ods excel options(sheet_name='Overall');



Proc SGPLOT data=test;
 Series x=Date y=successful / lineattrs=(color=blue thickness=3) Legendlabel='Successful';
 Series x=Date y=Unsuccessful / lineattrs=(color=RED  thickness=3) Legendlabel='UnSuccessful';
 yaxis display=(noline noticks) grid values=(0 to 325000 by 25000) offsetmin=0 label='Count';
 Format Successful UnSuccessful comma9.;
 RUN;

Any help in resizing the graphs is appreciated.

 

Cheers

 

Dean

1 ACCEPTED SOLUTION

Accepted Solutions
JamesM1962
Calcite | Level 5

I ran into this issue today.  It looks like SAS writes pages to excel to fit the default destination print size.  I changed the output orientation and papersize to a format that better fit my needs as follows:

 

options orientation=LANDSCAPE; /* LANDSCAPE/PORTRAIT */

options papersize=legal; /* LETTER is 11 X 8.5, LEGAL is 14 X 8.5 */

View solution in original post

1 REPLY 1
JamesM1962
Calcite | Level 5

I ran into this issue today.  It looks like SAS writes pages to excel to fit the default destination print size.  I changed the output orientation and papersize to a format that better fit my needs as follows:

 

options orientation=LANDSCAPE; /* LANDSCAPE/PORTRAIT */

options papersize=legal; /* LETTER is 11 X 8.5, LEGAL is 14 X 8.5 */

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register 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
  • 1 reply
  • 2862 views
  • 0 likes
  • 2 in conversation