ステートメントPROC REPORT
内を使用して、SAS で 2 列のレポートを作成しています。ODS PDF
私のコードは次のようになります。
ods pdf file='/file/here.pdf' columns=2;
ods pagestart=now;
proc report data=rpt\_data nowd missing contents='';
columns a b c;
by a;
define a /group order=internal;
define b /display;
define c /display;
break after a /page;
run;
これは、私が望むような実際の新しいページではなく、ページの次の列に「壊れる」ように見えるだけです。
助言がありますか?
このコードを実行すると、私が問い合わせている問題が発生します。
%let file1='/file/directory/test.pdf';
ods pdf file=&file1. columns=2;
ods pdf startpage=now;
proc sort data=sashelp.class out=temp;
by age;
run;
proc report data=temp nowd missing contents='';
columns age name sex;
by age;
define age /group order=internal;
define name /display;
define sex /display;
break after age /page;
run;
ods \_all\_ close;