The variable ci_2n has a value that was entered as -8. This should be changed to be missing. Below is the code I've tried:
Data unmet.original5;
Set unmet.original4;
If ci_2n = -8 then ci_2n_fix = '.';
Run;
Proc freq data = unmet.original5;
Table ci_2n_fix;
Run;
The table now shows all 637 observations as missing.
I don't know how to make the -8 vale as missing without making all of the observations as
: