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 | ||||
| . | . | |||
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.