BookmarkSubscribeRSS Feed
JCool42
Calcite | Level 5

We have an existing job running via Unix batch that utilizes ODS Excel.  Prior to our conversion to SAS 9.4M4 the following code put the proc report output and the proc gplot on the same tab.  We create multiple tabs  (ALL, MC, PL)   Prior to the conversion, the following code did this perfectly, now  all the data is in one tab.  I have reviewed all the OPTIONS for ODS Excel and I can find a reason for this.  Appreciate any help you can provide.   Additionally, when this code runs in SAS EG, multiple tabs are created.  When we run via batch submit, we get one tab only

 

ods excel file="filename..xls" style=normal;

ods noproctitle;

 

%macro doit(sheetname); 

 

ods excel options(embedded_titles='yes'

 

sheet_interval="none"

 

sheet_name = "&sheetname"

 

absolute_column_width='10,10,5');

 

proc tabulate data=all_months out=auths;

 

class disposition reason rar_transaction_date;

 

var authorizations;

 

table disposition*reason*(n='#'*f=comma12. colpctn='%'*f=5.2) (all='Total'*f=comma12.),

 

authorizations * rar_transaction_date=' ';

run;

 

ods graphics / height=500 width=2000 ;

 

ods listing gpath="%sysfunc(getoption(work))";

 

GOPTIONS device=ACTXIMG;

 

proc sgplot data=graph1;

 

title "Unit Rate";

 

vline rar_transaction_date / response=unit_rate ;

 

XAXIS label = 'Date';

 

YAXIS label = 'Unit Rate' GRID min=0;

 

run;

 

 

%doit(All,);

 

%doit(MC);

 

%doit(PL);

2 REPLIES 2
Haris
Lapis Lazuli | Level 10
Shot in the dark here but I found that OPTION ValidVarName defaults are different between Base SAS and SEG. SAS uses 'V7' which replaces spaces and non-SAS characters with underscores versus 'ANY' in SEG with puts the name in quotes and adds an 'n' to the end. For example, 'Variable Name' would be read as Variable_Name by base SAS but 'Variable Name'n by SEG. I suspect that your culprit is in general SAS options rather than ODS Excel options.
Cynthia_sas
Diamond | Level 26

Also, and this is minor, but could cause issues. When you use ODS EXCEL, the valid file extension is .XLSX (not .xls as your show). You should be getting a Microsoft warning window with .XLS as the file extension. Also GOPTIONS should not have an impact on PROC SGPLOT -- you should put your imagefmt= option in the ODS GRAPHICS statement.

cynthia

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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