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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.