I am writing multiple PDFs using the by group of "schnum" and using "schname" in the report title, but SAS is also including a line below the title in the header on each page that shows "schnum=<val>schname=<val>". How do I suppress the addition of that line in the header that displays the values of the by variables?
ODS pdf FILE="G:\Surveys\LCAP Needs Survey\2018-19\Comment PDFs\Staff\site1.pdf" newfile=bygroup;
ods escapechar='^';
proc report data=parentopen split='|' style(report)={font_size=9pt}
style(header)={font_size=9pt}
style(column)={just=center font_size=8pt};
title1 'LCAP Needs 2018-19 Staff Survey Comments^n#byval(schname)';
by schnum schname;
define schnum /"School ID" noprint;
define schname / "School Name" noprint;
define q1_open / "What other priorities should the district consider in delivering high quality instruction?" style(column)={cellwidth=5cm};
define q2_open / "What other priorities should the district consider in monitoring student progress?" style(column)={cellwidth=5cm};;
define q3_open / "What other priorities should the district consider to help keep students and staff safe and connected to school?" style(column)={cellwidth=5cm};;
define q4_open / "What other priorities should the district consider to keep families and communities engaged with school?" style(column)={cellwidth=5cm};;
run;
ods pdf close;
options nobyline; was the answer... sorry lol
options nobyline; was the answer... sorry lol
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.