Hi everyone,
I'm using SAS 9.3. I'd like to add a 'Note' at the end of the report instead of the footer by PROC Report, how should I do
You could try this: compute after _page_; line 'Note:xxxxx'; endcomp; Change style , you could use escapechar: ods escapechar='~'; ......... computer after ; line " ~S={background=blue} Note:xxxxxxx "; endcomp; If the above still can't work. I suggest you post your question at ODS forum. @Cynthia is there. Maybe she has a better idea.
Several papers exists describing the more advanced uses of proc report:
http://www2.sas.com/proceedings/sugi24/Coders/p080-24.pdf
http://support.sas.com/resources/papers/proceedings10/215-2010.pdf
try the following code:
compute after ;
line 'Note: xxxxxxxxxxx';
endcomp;
Thanks. It works, but how can I make the 'Note: xxxx' out of the line at the end report?
JC
Besides, the 'Note:xxxxx' is the data out of table cells, how can I adjust its font-style by 'proc template; ....; replace fonts/ ...;'?
JC
You could try this: compute after _page_; line 'Note:xxxxx'; endcomp; Change style , you could use escapechar: ods escapechar='~'; ......... computer after ; line " ~S={background=blue} Note:xxxxxxx "; endcomp; If the above still can't work. I suggest you post your question at ODS forum. @Cynthia is there. Maybe she has a better idea.
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.