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
Diamond | Level 26

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

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