I have a dataset
columns: A B C D
APPLE BALL 123 .
APPLE BALL . 123
I WANT AN OUTPUT TO BE LIKE FOLLOWING
A B C D
APPLE BALL 123 123
How can I solve this in single step ? Thanks
If it takes just column A to determine a unique observation:
data want;
update have (obs=0) have;
by a;
run;
If it takes the combination of both columns A and B, switch to:
data want;
update have (obs=0) have;
by a b;
run;
In any case, the data need to be in sorted order to be allowed to use the BY statement.
If it takes just column A to determine a unique observation:
data want;
update have (obs=0) have;
by a;
run;
If it takes the combination of both columns A and B, switch to:
data want;
update have (obs=0) have;
by a b;
run;
In any case, the data need to be in sorted order to be allowed to use the BY statement.
I figured out a way. Thank you.
@purveshrana for completion, please post the solution or mark one here as correct.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.