Hi,
I am outputting a .RTF using proc report using "By" statement. The "by group" on the header only appear on the first page and is center-aligned. How do I left-align and change the wording on every page? Thank you.
code:
title4 &title4;
title5 &title5;
title6 'Safety Population';
proc report data = final1 nowd headline headskip missing split='@' style(header column)=[protectspecialchars=off];
by dose;
columns ordx1 aebodsys total1 aedecod desc ;
define ordx1 / descending order order=internal noprint;
define aebodsys / order order=internal noprint;
define total1 / descending order order=internal noprint;
define aedecod / order order=internal noprint;
run;
current output:
want (in hightlight):
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.