Pdf SAS,在报告中打印语句

Pdf SAS,在报告中打印语句,pdf,sas,Pdf,Sas,我有一个数据,然后我将运行一些代码并将报告打印为pdf ods pdf file="path/name.pdf"; if table A doesn't have any obs, then print the statement "No observations" to the final pdf report, else if table has obs, then print the statement "here is the table A" to the final pdf rep

我有一个数据,然后我将运行一些代码并将报告打印为pdf

ods pdf file="path/name.pdf";
if table A doesn't have any obs, then print the statement "No observations" to the final pdf report, 
else if table has obs, then print the statement "here is the table A" to the final pdf report. 

proc print data =TableA;run;

ods pdf close;

当table为空时,执行将在set处停止,但在set之前将e设置为1,因此第一个if语句将执行。当它不是空时,执行会在停止时停止

如何更改语句的字体和颜色?它们在最终的ods pdf上太小了。
data _NULL_;
    file print;
    if e then put 'No observations';
    set TableA end=e;
    put 'here is the table A';
    stop;
run;