How can I display header type text within a proc report? I am trying to display different text per section. The below block creates a report where the line call is displayed for every category group with the same text.
proc report data=FacultyProfileFall;
column categoryGroup colPreOrdering2 formatGroup c2 c3 c4 c5 c6 c7;
define c2 / format=comma9. '2011-12';
define c3 / format=comma9. '2012-13';
define c4 / format=comma9. '2013-14';
define c5 / format=comma9. '2014-15';
define c6 / format=comma9. '2015-16';
define c7 / format=comma9. '2016-17';
define categoryGroup / group order = internal ;
define colPreOrdering2 / group order = internal format= rankFormatValue. ;
define formatGroup / group noprint;
compute before categoryGroup / style=[just=l font_weight=bold];
if categoryGroup = 5 then do;
line 'Insert only once rather than every category group.';
end;
endcomp;
run;
line categoryGroup;
line categoryGroup;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.