From: "Mark S." on
Hi,

I am using the code below to produce a word doc:

options nobyline;
ods rtf file='C:\projects\Tox Reports.doc';
proc print data=max_grade_counts_tran width=min noobs;
by set group;
run;
ods rtf close;

In truth, I am using some extra statements including a title statement with
#byval but the problem I am experiencing occurs with even the simplified code
above. The problem is that for one of my by-groups the 'nobyline' option is
causing the table to break to a new page prematurely for some unknown reason.
The data set I am using is pretty much just output from other SAS procs and I
do not believe there are any hidden characters within it that would cause this
(I am not certain though). Any ideas? Thanks!....

Mark