Hi!
if youre looking to make a new variable, say you name it "name" you would doname= CATX (',', LastNm, FirstNm);
and if you wanted to get rid of those other two variables you would just drop them!
drop LastNm FirstNm;
View solution in original post
Another option could be Cat
data Want;
set Have;
FullName = cat(Lastnm, Firstnm);
run;
https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.5&docsetId=basess&docsetTarget=p1ka2...
Or Google: "Creating New Character Values in SAS Documentation"
You could do this:
DATA new; SET old; FullName = LastNm || ',' || FirstNm; RUN;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Register now!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.