Code (we are on 9.3) is the following and have attached the output pdf. Rather than repeat the clinic name and date on the next page(s) it is repeating on each adjacent row. I am fairly new to SAS so any help is much appreciated.. Thanks. options orientation=landscape;
ods listing close;
ods pdf file="dummy_opencharts.pdf"
notoc startpage=no;
title "Clinic Summary - Physician Open Chart Report (for incomplete charts more than 14* days old)";
footnote1 'Each open chart will have a $10.00 fee based upon the weekly InBasket report';
footnote2 '*- Starting on 1/1/2020 penalty will apply to incomplete charts more than 7 days old';
proc report data=tmp3 nowindows nowd spanrows
style(report)={font_face=times font_size=1}
style(column)={just=center font_face=times background=white foreground=black
font_size=1 cellwidth=.6in}
style(header)={just=center font_face=times cellheight=.7in font_size=1
foreground=black cellwidth=.6in background=white};
column scheduling_department
report_dt
unclosed_14_plus_num
unclosed_14_plus_amt
transcription_14_plus_num
transcription_14_plus_amt
unsigned_esig_14_plus_num
unsigned_esig_14_plus_amt
hospital_14_plus_num
hospital_14_plus_amt
cosigns_14_plus_num
cosigns_14_plus_amt
total_14_plus_num
total_14_plus_amt
unclosed_8_plus_num
unclosed_8_plus_amt
transcription_8_plus_num
transcription_8_plus_amt
unsigned_esig_8_plus_num
unsigned_esig_8_plus_amt
hospital_8_plus_num
hospital_8_plus_amt
cosigns_8_plus_num
cosigns_8_plus_amt
total_8_plus_num
;
define scheduling_department / group
style(header)={vjust=middle}
style(column)={vjust=middle};
define report_dt / order order=internal format=mmddyy10.
style(header)={vjust=middle}
style(column)={vjust=middle};
break after scheduling_department / summarize;
compute after scheduling_department; line ' '; endcomp ;
run;
ods pdf close;
... View more