I need assistance Need help with copying data into missing fields using SAS VA 7.3 Data Builder
Here is an example of the results in Data prep
Record ID Name Activity Number Year Month
1 snoopy 123
1 2018 JAN
2 bob 456
2 2018 FEB
3 raul 123
3 2018 MAR
Here is what I want the results to look like
Record ID Name Activity Number Year Month
1 snoopy 123 2018 JAN
2 bob 456 2018 FEB
3 raul 123 2018 MAR
If it supports data step code:
data want;
update have(obs=0) have;
by recordID;
run;
Sweet 🙂
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.