Hi,
I would like to add table with document information and with title to header (and to footer) of generated RTF document.
It should look like this,
where the table is in header of RTF document.
How do I achieve this?
Thank you for any advice
Hi:
I don't quite understand from your description what you mean by "add table with document information and with title to header". You also mentioned a footer, but didn't show a footer or footnote text.
Do you mean something like this:
It was all accomplished with SAS TITLE statements, ODS ESCAPECHAR (for the solid line and Page X of Y) and style overrides plus macro variables for the Protocol and date information -- I used the Journal style just because a lot of reports like this are in Journal style.
Here's the code that produced this output:
Hope this helps,
Cynthia
Hi:
I don't quite understand from your description what you mean by "add table with document information and with title to header". You also mentioned a footer, but didn't show a footer or footnote text.
Do you mean something like this:
It was all accomplished with SAS TITLE statements, ODS ESCAPECHAR (for the solid line and Page X of Y) and style overrides plus macro variables for the Protocol and date information -- I used the Journal style just because a lot of reports like this are in Journal style.
Here's the code that produced this output:
Hope this helps,
Cynthia
Thank you, thats exactly what I wanted to achieve ...
to add a footnote to the table you could use:
compute after ;
line @1 " .... footnote ....";
endcomp;
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.