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

data have;

infile datalines missover dsd;

input name $ country $ salary;

datalines;

ganesh,, 40000

ganesh,india,         

;

run;

 

output data set should be like as under 

 

name country salary

ganesh india 40000

 

 

thanks in advance 

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

To do this with SQL is not efficient:

 


proc sql;
select * 
from 
    (select unique name from have) 
    natural left join
    (select name, country from have where country is not missing)
    natural left join
    (select name, salary from have where salary is not missing);
quit;
PG

View solution in original post

3 REPLIES 3
Reeza
Super User

UPDATE statement is what you want/need.

PGStats
Opal | Level 21

Use the self-update trick where every non-missing variable overwrites the previous value within a by group.

 

data have;
infile datalines missover dsd;
input name $ country $ salary;
datalines;
ganesh,, 40000
ganesh,india,  
Smith,USA,
Smith,,100000 
;

proc sort data=have; by name; run;

data want;
update have(obs=0) have;
by name;
run;

proc print; run;
PG
PGStats
Opal | Level 21

To do this with SQL is not efficient:

 


proc sql;
select * 
from 
    (select unique name from have) 
    natural left join
    (select name, country from have where country is not missing)
    natural left join
    (select name, salary from have where salary is not missing);
quit;
PG

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
  • 1186 views
  • 0 likes
  • 3 in conversation