BookmarkSubscribeRSS Feed
emma_madrid
Calcite | Level 5

Hello,

 

I was able to generate an excel file with ODS EXCEL and I added 3 lines at the beginning of the file using proc odstext; Everything works fine except that the user sas name is added twice in the generated excel. Once at the beginning before the proc odstext and once before starting the table.

 

Any idea to avoid inserting the user sas name?

 

Code used:

 

ODS EXCEL FILE=exprt

options(sheet_name="sheetname"
sheet_interval='none'
embedded_titles='yes'
autofilter='1-11'
FLOW="TABLES"
);
proc odstext;
p "Title1" / style=[color=#003366 font_weight=bold];
p "Title2 %sysfunc(UPCASE(%sysfunc(compress(&Date)))) %sysfunc(year("&Date."d))" / style=[color=#003366 font_weight=bold];
p "Title3" ;
run;

 

Thanks!

4 REPLIES 4
SASJedi
Ammonite | Level 13

Running the code you provided here does not recreate the problem for me.  I suspect the userID is being inserted by some of the other code. Look for a reference to &SYSUSERID - this is the macro variable that contains the username of the person or system user executing the code. 

Check out my Jedi SAS Tricks for SAS Users
emma_madrid
Calcite | Level 5

Thanks for the clue. I checked the code, but there is no reference to &SYSUSERID.

I also noticed it happens when the SAS program is executed in LINUX, not when i execute in EG.

Quentin
Super User

Did you try adding:

title;
footnote;

immediately before the PROC ODSTEXT step?

 

When you run code via EG, you're probably running SAS on linux.  When you say the problem only happens on Linux, how are you running that code?  Are you batch submitting on linux?  It's possible your SAS session has a different autoexec or other config setting that is creating titles/footnotes automatically.  

Quentin
Super User

Any chance you have a Title and Footnote that are generating the username?  If you add:

title1  ;
footnote1 ;

before the code to clear titles and footnotes does that solve the problem?

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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