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

Hello. This Question has 2 steps:

I've a dataset, Table A with a variable, 'dist' which may have incorrect values. and have added a new variable 'dist_orig' which has the updated values.

However, 'dist_orig' only has updated values for some but not all observations (i.e, some are missing).  Therefore I don't want to overwrite 'dist' with missing values in 'dist_orig';

I want to retain values of 'dist' for which I"m missing values in 'dist_orig'.

The ulitmate goal is to update the variable 'dist' with the values in dist_org.

I know how to do it if I divide Table A into 2 datasets and use the UPDATE statement.

But, how do you update 'dist' with values in 'dist_orig' if they're in the same dataset?


1 ACCEPTED SOLUTION

Accepted Solutions
Haikuo
Onyx | Level 15

if both variables are numeric:

dist=coalesce(dist_org,dist);

or they are Char:

dist=coalescec(dist_org,dist);

Check docs for details.

Haikuo

Update:

deleted.

View solution in original post

2 REPLIES 2
Haikuo
Onyx | Level 15

if both variables are numeric:

dist=coalesce(dist_org,dist);

or they are Char:

dist=coalescec(dist_org,dist);

Check docs for details.

Haikuo

Update:

deleted.

jcis7
Pyrite | Level 9

Thank you very much!!Smiley Happy

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
  • 2 replies
  • 1351 views
  • 0 likes
  • 2 in conversation