Hi,
I want to add year 12/31/1971 and 12/31/1986 to each ID. Can anyone please help me to do it. I have attached an excel file with sample data. I will be grateful if anyone can help me.
Use BY groups again and LAST with explicit OUTPUT.
data want;
set have;
by id;
output;
if last.id then do;
date='01Jan2017'd; output;
date='02Jan2017'd; output;
end;
run;
@nazmul wrote:
Hi,
I want to add year 12/31/1971 and 12/31/1986 to each ID. Can anyone please help me to do it. I have attached an excel file with sample data. I will be grateful if anyone can help me.
Use BY groups again and LAST with explicit OUTPUT.
data want;
set have;
by id;
output;
if last.id then do;
date='01Jan2017'd; output;
date='02Jan2017'd; output;
end;
run;
@nazmul wrote:
Hi,
I want to add year 12/31/1971 and 12/31/1986 to each ID. Can anyone please help me to do it. I have attached an excel file with sample data. I will be grateful if anyone can help me.
1. There's no attachment
2. Set the values to missing manually or use call missing() in the do condition.
Thank you. I set other variable as missing with if function.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.