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 open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.