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 🙂
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.