BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Bal23
Lapis Lazuli | Level 10

where it contains lots of missing values, say 98% of obs have missing values.

 

whether i use

if var1 NE . then var2 ="M";

or if var1 ne "." then var2 ="M"

it does not work, i do see lots of missing values, but just cannot create var2

any advice?

thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Missing for character values is not "."

It would be easier to use

 

if not missing(var1) then var2='M';

 

as the Missing function will use the correct comparison for numeric or character as needed.

View solution in original post

4 REPLIES 4
ballardw
Super User

Missing for character values is not "."

It would be easier to use

 

if not missing(var1) then var2='M';

 

as the Missing function will use the correct comparison for numeric or character as needed.

Bal23
Lapis Lazuli | Level 10

thank you, but how to identify those missing values, I need to identy those as well, how to create a variable and give a vlue for those with missing values

ballardw
Super User

If missing(var1) then var2='whateveryouwantto assign';

Reeza
Super User

Are your variables character or numeric? Are they all the same type?

 

Post an example of what your data looks like and what you want as an output.

I think you want an array, assign the variables to the array and then loop through and create variables that flag if they're missing.

 

Also, what isyour end goal with flagging these as missing? There may be another way to get it. 

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
  • 4 replies
  • 1538 views
  • 2 likes
  • 3 in conversation