Hi,
I need to do a page break for "Days/week at workplace".
current output:
data:
code:
proc report data=final nowindows center headline headskip missing split='|';
column ord1 ord2 desc ;
define ord1 / order order=internal noprint;
define ord2 / order order=internal noprint;
define desc / display " " style(column)={asis=on just=left cellwidth=2 in} flow style(header)={just=left font_size=9pt};
break after ord1 / skip;
compute before ord1 / style(lines)={font_size = 3pt};
line " ";
endcomp;
run;
data cars;
set sashelp.cars;
keep _character_;
run;
proc sql;
create table have as
select *,count(*) as n
from cars
group by make;
quit;
data have;
set have;
by make;
if first.make then do;
cum+n;
if cum>30 then do;p+1;cum=n;end; /*a page have 30 rows*/
end;
drop cum n;
run;
ods rtf file='c:\temp\x.rtf' style=journal;
proc report data=have nowd;
column _all_;
define p/group noprint;
break after p/page;
run;
ods rtf close;
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.