BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ADN
Fluorite | Level 6 ADN
Fluorite | Level 6

Hi,

 

I am using SAS ODS Excel to generate excel files with tables. My question is how do I set the font, font size, color and font weight. 

 

Previously I used something like this in SAS ods excelxp tagset. But that does not seem to be working anymore.

 

define tot_defects/ display style(header)={font_face="Calibri" font_size=12pt font_weight=bold background=CX2E8B57 foreground=CXFFFFFF just=c}
          style(column)={font_face="Calibri" font_size=10pt just=c};

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Vince_SAS
Rhodochrosite | Level 12

I suggest that you open a track with our Technical Support Department:

 

http://support.sas.com/ctx/supportform/createForm

 

Be sure to include your code, sample data, and a copy of the SAS log from the code that fails.

 

Vince DelGobbo

SAS R&D

 

View solution in original post

3 REPLIES 3
Vince_SAS
Rhodochrosite | Level 12

What version of SAS are you using?  This worked for me using SAS 9.4 M3 on Windows:

 

ods _all_ close;
ods Excel file='C:\temp\temp.xlsx'; proc report data=sashelp.class nowd; column name age sex height weight; define name / display style(header)=[font_face='Calibri' font_size=12pt font_weight=bold background=CX2E8B57 foreground=CXFFFFFF just=c] style(column)=[font_face='Calibri' font_size=10pt just=c]; run; quit; ods Excel close;

Vince DelGobbo

SAS R&D

ADN
Fluorite | Level 6 ADN
Fluorite | Level 6

I am using sas 9.04.01M3P062415

 

I think the Fonts are not coming as expected. Rest is still fine........

Vince_SAS
Rhodochrosite | Level 12

I suggest that you open a track with our Technical Support Department:

 

http://support.sas.com/ctx/supportform/createForm

 

Be sure to include your code, sample data, and a copy of the SAS log from the code that fails.

 

Vince DelGobbo

SAS R&D

 

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