I have an rtf output with no current data based on the subset. How do I print text "No Data" in the output along with the table shell in proc report?
current output:
want:
Hi @HitmonTran You could try adding a text in a LINE statement within a compute block. Have you tried it?
data w;
if 0 then set sashelp.class;
call missing(of _all_);
output;
stop;
run;
proc report data=w;
compute before;
line 'no data';
endcomp;
run;
Name | Sex | Age | Height | Weight |
---|---|---|---|---|
no data | ||||
. | . |
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.