Hello, I pretty much use call missing function when I have to set to missing both character and numeric variables. For example when I use hash and have previously loaded variables using set, I find useful call missing rather then missing. Consider the following example: data want; if 0 then set have hash1; if _N_=1 then do; declare hash a(dataset: "hash1"); a.definekey('key'); a.definedata('num1', 'num2', 'num3', 'char1', 'char2', 'char3'); a.definedone(); end; set have; if a.find() ne 0 then call missing(num1, num2, num3, char1, char2, char3); run;
... View more