From: Lee Jenson on
Sorry.. another question...

How can I move a table down a few lines. If I use the title command it
affects the other reports and I only want the one report (1 of 3) to
move down.
Thanks

Lee
From: Ya on
On Aug 10, 6:20 am, Lee Jenson <sasuser2...(a)googlemail.com> wrote:
> Sorry.. another question...
>
> How can I move a table down a few lines. If I use the title command it
> affects the other reports and I only want the one report (1 of 3) to
> move down.
> Thanks
>
> Lee

Assume you use ODS with proc report, you can use ods text statement to
add needed space between each procs:

options orientation=portrait;

ods rtf file="c:\temp\junk.rtf";
ods rtf startpage=no;

proc print data=sashelp.class (obs=5);
run;

ods rtf text=' ';
ods rtf text=' ';
ods rtf text=' ';
ods rtf text=' ';
ods rtf text=' ';

proc print data=sashelp.class (obs=5);
run;

proc print data=sashelp.class (obs=5);
run;

proc print data=sashelp.class (obs=5);
run;

ods rtf close;

The above code generate 4 reports with space between 1 and 2 the
biggest.

HTH

Ya