我有 ods HTML 电子邮件发件人,其中包含 2 个 proc 报告:
ods html file=sendmail;
proc report data=h2 headskip headline spacing=100;
column d1 d2 d3;
define d3/group noprint;
define d1/display left;
define d2/display center;
break afetr gr/;
compute after gr;
line " ";
endcomp;
compute before _page_ /style=[color=red] line;
line "abcdefg";
endcomp;
run;
proc report data=h3 noheader nocenter spacing=100;
column r1;
define r1/display style=[color='green'];
compute before _page_ /style=[color=red] line;
line "qwerty123";
endcomp;
run;
ods html close;
ods listing;
结果我得到了 2 个报告,但它们之间有一个巨大的空白,比如额外的空白行或标题位置。我怎样才能将报告严格地放在另一个之下(只有 1 个空行)?提前谢谢