BookmarkSubscribeRSS Feed
mcook
Quartz | Level 8

In proc report, how do i get the '.'  value to be displayed as 'unknown', rather than the missing indicator (see table below).  For character variables i could simply change all missing values to 'unknown' in the dataset, but i cannot do that with numerical vars.  

 

mcook_0-1714606895159.png

 

2 REPLIES 2
A_Kh
Lapis Lazuli | Level 10

Hi, 

Use PROC FORMAT before proc report, then apply created format in proc report to display  the missing value as 'unknown'.

Patrick
Opal | Level 21

If you're already using a SAS supplied format like percent. below sample code to demonstrate how you can extend it for a missing case.

proc format;
  value missToUnknown
    . = 'Unknown'
    other=[percent.]
    ;
run;

data demo;
  do var=-0.5,.,0,0.5;
    output;
  end;
run;

proc print data=demo;
  format var missToUnknown.;
run;

Patrick_0-1714627126174.png

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 283 views
  • 0 likes
  • 3 in conversation