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

I have the a footnotes "QS= 50th percentile of the data" how can I supercript  and subscript the "th" in footnotes? in this case only superscript needed but I want to learn how  I can do subscripts as well. Thanks 

1 ACCEPTED SOLUTION

Accepted Solutions
maguiremq
SAS Super FREQ

Here's a good resource:

http://support.sas.com/kb/24/046.html 

 

Tested and it seems to work here:

ods escapechar='^';
proc print data = sashelp.class;
	footnote "QS = 50^{super th} percentile of the data";
	footnote2 "QS = 50^{sub th} percentile of the data";
run;

View solution in original post

1 REPLY 1
maguiremq
SAS Super FREQ

Here's a good resource:

http://support.sas.com/kb/24/046.html 

 

Tested and it seems to work here:

ods escapechar='^';
proc print data = sashelp.class;
	footnote "QS = 50^{super th} percentile of the data";
	footnote2 "QS = 50^{sub th} percentile of the data";
run;

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
  • 1 reply
  • 1308 views
  • 3 likes
  • 2 in conversation