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
SAS Super FREQ

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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 895 views
  • 0 likes
  • 3 in conversation