Dear all,
Do you know if it is possible to put text in small caps using proc report (ODS RTF) ? I use SAS 9.4.
I've tried the following piece of code in a compute statement in my proc report :
call define(_row_,'style',"style={font='SMALL-CAPS'}");
Thanks in advance for your help,
BR,
Violaine
Thanks for your answer.
For your info, I found the solution I was looking for: I add "{\scaps " before and "}" is added after the value of the variable to be printed.
By this way, the value of the variable are put in small capital letters. This was just in order to facilitate the readability of the printed output.
BR,
Hi,
Well, report is an output function, doesn't really change the actual data, so whilst you might be able to force it, why? Just do it in a datastep previously:
data a;
set b;
the_variable=lowcase(the_variable);
run;
Alternatively, do you mean subscript? I.e. have small letters. If so then use escape characters:
ods escapechar="^";
data test;
a="This is a Test^sub{test}"; output;
run;
Then report that.
Thanks for your answer.
For your info, I found the solution I was looking for: I add "{\scaps " before and "}" is added after the value of the variable to be printed.
By this way, the value of the variable are put in small capital letters. This was just in order to facilitate the readability of the printed output.
BR,
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!
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.
Ready to level-up your skills? Choose your own adventure.