I have ods HTML email sender, in which i have included 2 proc reports:
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;
As a result i get 2 reports, but there is a huge blanks between them, like extra blank rows or place for titles. How can i put reports strictly one under another (with only 1 blank line)? thx in advance
After removing some errors in the code, I don't see any big blanks between the two reports.
Is that what are you looking for ?