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

Hello fabulous SAS experts,

I have a 11 line footer, which is a problem because I cannot use footnote statement. So I tried to use the compute block and line statement in proc report procedure as follows:

computer after _page_;

line "Learning Outcomes: are the knowledge, skills, and values we expect students to achieve upon graduation.";

endcomp;

What should I do if I want to bold "Learning Outcomes" and italicize "knowledge", "skills", and "values" in the output?

Any help would be much appreciated!

Yao

c

1 ACCEPTED SOLUTION

Accepted Solutions
Carrotbing
Calcite | Level 5

Okay, I got it after some struggle.

ods escapechar='~';

proc report ...;

compute after _page_;

line@1 "~{style [font_weight=bold] SLO:} ~{style [fontstyle=italic] SLO} stands for student learning outcomes.";

endcomp;

This produces a line with both bold and italics as in:

SLO: SLO stands for student learning outcomes.

Thanks everyone for helping.

Yao

View solution in original post

3 REPLIES 3
Cynthia_sas
SAS Super FREQ

Hi:

  You can bold the whole line using a simple STYLE= override, but to only italicize certain words within a text string, you will need to use ODS ESCAPECHAR and in-line formatting. There have been many previous postings on the topic in the forum. I'm sure you can find them if you search.

cynthia

Carrotbing
Calcite | Level 5

Okay, I got it after some struggle.

ods escapechar='~';

proc report ...;

compute after _page_;

line@1 "~{style [font_weight=bold] SLO:} ~{style [fontstyle=italic] SLO} stands for student learning outcomes.";

endcomp;

This produces a line with both bold and italics as in:

SLO: SLO stands for student learning outcomes.

Thanks everyone for helping.

Yao

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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