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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 873 views
  • 0 likes
  • 2 in conversation