May I know how to make the proc report data appear in page1 instead of page2? I run the below codes; but the proc report data output appeared on page2, not on page1 after the ods text. Can anyone help? Thank you very much.
ods pdf file='c:\sastest\test.pdf' style=minimal;
proc tabulate data=sashelp.cars format=dollar14.2;
class type; var invoice msrp; table type, msrp invoice msrp*pctsum<invoice>='Ratio of MSRP to Invoice'*f=8.2;
run;
ODS TEXT = "TRANSACTION RECORDS";
PROC REPORT DATA=SASHELP.CARS(Where=(Make='Volvo')) style(header)=[background=tan] NOWINDOWS HEADLINE HEADSKIP;
COLUMNS MAKE MODEL INVOICE;
DEFINE MAKE /GROUP 'Car Brand';
DEFINE MODEL /GROUP 'Car Model';
DEFINE INVOICE / ANALYSIS 'INVOICE' FORMAT=DOLLAR16.2;
RBREAK AFTER/ SUMMARIZE;
RUN;
ODS PDF CLOSE;
ODS LISTING;