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

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.  

The Boston Area SAS Users Group is hosting free webinars!
Next webinar will be in January 2025. Until then, check out our archives: https://www.basug.org/videos. And be sure to subscribe to our our email list.
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?

The Boston Area SAS Users Group is hosting free webinars!
Next webinar will be in January 2025. Until then, check out our archives: https://www.basug.org/videos. And be sure to subscribe to our our email list.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 781 views
  • 2 likes
  • 3 in conversation