Hi: Are you using ODS TEXT= and/or STARTPAGE=NO or STARTPAGE=NEVER? Without seeing your code and some sample data, no one can even try to replicate your issue. There was a Tech Support note from a few years back that you would not get an image if you were using {THISPAGE} and {LASTPAGE} with images and ODS PDF, but not getting a TABLE is strange. Generally, SAS starts the table on the page with the title unless your code is doing something strange. If I use PROC REPORT with ODS PDF and the table is longer than 1 page, the table just continues to the next page(s). cynthia **For example, this code generates a 4 page output; ods pdf file='c:\temp\doshoes.pdf' ; proc report data=sashelp.shoes; title 'SASHELP.SHOES -- more than 1 page'; where region in ('Asia', 'Pacific', 'Western Europe'); run; ods pdf close;
... View more