Is there a way to create bold, black lines between groups (ie variable "num")?
Also, is there a way to create a space between groups?
Thank you.
ods tagsets.excelxp file="C:\Documents and Settings\LA_Training.xls"
style=journal
options(frozen_headers='1'
autofit_height='yes'
absolute_column_width='4,15,8,15,6,15,20,20,25')
;
proc report data=traininj1 nowd contents="Claims" out=test
style(header)=[font_weight=bold];
options missing='0';
column num job_class date1 type;
define num / group 'ID' style(column)={just=l} order=data;
define job_class / 'Job' style(column)={just=l};
define date1 / 'Date';
define type / 'Class/Injury';
compute type;
if type in ("Incident Only") then call define(_row_,"style","style=[background=yellow]");
endcomp;
break after num/ ol skip;
run;
ods tagsets.excelxp close;
... View more