BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sackey
Calcite | Level 5

Hello,

I have a SAS dataset (dataset name= Gold) with special missing (.A .B .D) in 400 various variables (such as Age, Weight, Sex, Race). 

A colleague who uses SPSS will be using this dataset and when I export it to a CSV file, the special missing appears as text (A B D etc). 

I will appreciate help converting all the special missing to regular missing (.) in the various variables. 

Thanks

Sackey 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

You can use an ARRAY to go through all variables and convert them to regular missing.

 

Something like this

 

data want;
    set have;
    array check a b c d e; /* Your actual variable names go here */
    do i=1 to dim(check);
        if missing(check(i)) then check(i)=.;
    end;
run;
--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

You can use an ARRAY to go through all variables and convert them to regular missing.

 

Something like this

 

data want;
    set have;
    array check a b c d e; /* Your actual variable names go here */
    do i=1 to dim(check);
        if missing(check(i)) then check(i)=.;
    end;
run;
--
Paige Miller
Shmuel
Garnet | Level 18

If you have in a column a character like 'A'  - how can you know if it is the '.A' in origin (i.e. missing value) or the real 'A' character ?

 

In case all thus variables shuould be numeric then you can check for numbers (digits) otherwise it is a missing value.

 

sackey
Calcite | Level 5
Thank you for your input. In this dataset, there are are no characters like 'A' which could be mixed up with a '.A' missing.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1187 views
  • 0 likes
  • 3 in conversation