Solution found...or so it seems To change font size of superscript embedded in a variable data rpt; var2 = strip(var1)||"^S={fontsize=10pt}^{super 1}"; run ; To change font size of superscript in heading label and footnote in the proc report proc report data=rpt ; column var2 ; define var2 / display style(column)=[just=center width=10%] style(header)=[just=center] "Text^{style [fontsize=10pt]^{super 1}}" ; footnote j=l "^{style [fontsize=10pt ]^{super 1}}Footnote text..." ; run ; The table body font size is 8pt. Increasing the superscript to 10pt slightly increases the line spacing b/t footnotes.
... View more