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;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

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
  • 9355 views
  • 1 like
  • 2 in conversation