As an alternative, you could set a dataset up to hold title/footnote and style information and generate from there: SECTION NO JUST TEXT ... Could add style etc. TITLE 1 L ABV TITLE 2 R ERT ... data _null_; call execute(cats(section," ",strip(put(no,best.))," j=",just," '",text,"';"); run; If you have a lot of titles it nice to be able to store them, qc them, manage them in a dataset or Excel file and not need to type them out.
... View more