ODS and Base Reporting

Build reports by using ODS to create HTML, PDF, RTF, Excel, text reports and more!
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
JohnSAScom
Quartz | Level 8

Where can I find a list of available fonts? 

 

I'm trying to create a format that will italicize some text in:

 

proc format;.
   value $FD
   'TEXT 1' = 'white'.
   'TEXT 2' = 'white'
   ;
   value $FW
   'TEXT 1' = 'normal'.
   'TEXT 2' = 'bold'
   ;
run;.
.
proc tabulate data=DAT s=[font=("arial")];.
  class UA;.
  classlev UA / style={foreground=$FD. fontweight=$FW. font=("arial")};.
  var X / style={font=("arial") fontweight=bold};.
  table UA, X;.
run;.

 

I'm interested in particular in the

 

classlev UA / style={foreground=$FD. fontweight=$FW. font=("arial")};

 

statement.  Would I change "font=("arial")}" to "font=("arial italic")}"?

1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
SAS Super FREQ
Hi:
Before you go down the road of changing the font, I'd recommend looking at the FONTSTYLE attribute (or FONT_STYLE is the older form of the attribute) such as shown on page 11 for PROC TABULATE in this document: https://support.sas.com/resources/papers/stylesinprocs.pdf

cynthia

View solution in original post

3 REPLIES 3
ballardw
Super User

You might look into proc fontreg to register more of your system fonts for use with SAS which with the MSGLEVEL option of verbose will provide details about fonts added, not added or just plain "not understood".

JohnSAScom
Quartz | Level 8

Thank you ballardw.  I'll give it a try.

Cynthia_sas
SAS Super FREQ
Hi:
Before you go down the road of changing the font, I'd recommend looking at the FONTSTYLE attribute (or FONT_STYLE is the older form of the attribute) such as shown on page 11 for PROC TABULATE in this document: https://support.sas.com/resources/papers/stylesinprocs.pdf

cynthia

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 4303 views
  • 0 likes
  • 3 in conversation