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
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;
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;
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.