Hi,all,
I have a dataset(PC3_1) without observation,I want to produce a listing just with tiitle "数据分析",this listing without any contents,Can this be achieved? if can,then how to do this .
fllowing is my trying about it.
thanks
data PC3_1;
set rawdata.PC3;
Auditor="";
Auditdt="";
Ques_record="";
Proce_mode="";
label Auditor="审核人";
label Auditdt="审核日期";
label Ques_record="问题记录";
label Proce_mode="处理方式";
run;
ODS LISTING CLOSE;
ods rtf file="F:\offline listing\Documents\listing\LIS55_10.rtf" ;
proc report data=PC3_1 nowd split='$';
title"数据分析";
quit;
ods rtf close;
ODS LISTING ;
title;
footnote;
options nodate;