Hi all,
I tried to output the proc print in PDF format using ODS in mainframe. when i opened the PDF file, the proc print output is in table format. I just want to remove the table border. Simply i need the output as we seen in the saslist. Please i need answer ASAP.
the below code working well. But the font size in the PDF file is too small. Please tell me how to increase the size of the font.
ods pdf file=pdfout startpage=now;
data _null_;
file print;
set cdhcpgrep;
format mon $month.;
title ' CDHCPG Report';
put mon y2ddol y2dpct y1ddol y1dpct;
run;
Using proc template to alter the look of the table can give you what you want. Here is something simple that I put together that I think answers your question.