I think it should work for PDF too. Here is what I did for the RTF file. in the final dataset, add one variable called pagecounter and set its value to 1 (or whatever value you like; but the value for this variable should all be the same). Then in the proc report section, define pagecounter/order noprint; compute after pagecounter; line @1 "*your notes here. "; endcomp; This way the footnotes will appear right after your table, and only once. If you would like to define different notes based on the contents in the table, then you should do this: break after pagecounter/page; %if &flag ne 1 %then %do; compute after pagecounter; line @1 "*your note 1 "; endcomp; %end; %if &flag=1 %then %do; compute after pagecounter; line @1 "**your note2"; endcomp; %end;
... View more