Dear community,
in SAS we can provide a footnote statement to provide such a piece of text and we can include formatting instructions.
... but how to do this in EG? You certainly go Options->Titles in the modify task dialog ... but then? How would you format
"A Test" (last word bold)?
The problem is, that all text entered are quoted in the generated code ...
Cheers fja
PS: I am interested in a solution using the dialogs in EG ... I know how to do that using plain SAS programming ...
Hello!
Thank you very much for your reply! No I use the SAS Report format as output.
... I am just wondering if something like is possible in a straight fashion
Cheers
fja
Make sure you have set an ODS ESCAPECHAR
ods escapechar='^';
Then use that to add style FONTWEIGHT=bold to your string.
A ^{style [fontweight=bold] Test}
Example:
data a;
a = "cat";
run;
ods escapechar='^';
footnote "A ^{style [fontweight=bold] Test}";
proc print data = a;
run;
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!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.