Search notes:

SAS option: missing

The missing option specifies the character with which a missing numerical value is represented.
data _null_; put missing_value=; run; /* missing_value=. */
option missing='?';
data _null_; put missing_value=; run; /* missing_value=? */
Github repository about-SAS, path: /programming/options/missing.sas

See also

SAS options

Index