BookmarkSubscribeRSS Feed
HitmonTran
Pyrite | Level 9

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:

HitmonTran_0-1609796005290.png

 

want:

HitmonTran_1-1609796067605.png

 

 

2 REPLIES 2
novinosrin
Tourmaline | Level 20

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
    . .
HitmonTran
Pyrite | Level 9
doesn't work bc i am using a macro and some proc report have data

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1875 views
  • 0 likes
  • 2 in conversation