BookmarkSubscribeRSS Feed
JackZ295
Pyrite | Level 9

Is there a way to exclude the frequency of missing values in a proc freq procedure? For example if you run a proc freq procedure with or without the /missing option: 

 

proc freq data=one;

tables variables; 

run; 

 

proc freq data=one; 

tables variables/missing;

run; 

 

I believe you still get the frequency of missing values, though the latter option counts the missing values in the percentage, correct? However, is there a way to exclude the missing values in the frequency table all together?

2 REPLIES 2
Ksharp
Super User
proc freq data=one(where=(variables is not missing)); tables variables; run;
Ksharp
Super User
proc freq data=one(where=(variables is not missing)); tables variables; run;

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

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 9161 views
  • 1 like
  • 2 in conversation