DATA HAVE;
INPUT NAME$30.;
CARDS;
SAI KIRAN PATEL
UMA
RAVI KIRAN
;
RUN;
I WANT DATA LIKE THIS WITHOUT USING ARRAYS
F-NAME M-NAME L-NAME
SAI KIRAN PATEL
UMA
RAVI KIRAN
CAN I GET CODE PLEASE? THANKS
Try this
data want(drop=name);
set have;
f_name = scan(name, 1);
m_name = scan(name, 2);
l_name = scan(name, 3);
run;
EDITED DATA ABOVE PLEASE CHECK AGAIN?
Quick fix
data want(drop=name);
set have;
f_name = scan(name, 1);
m_name = scan(name, 2);
if countw(name) = 2 then do;
call missing(m_name);
l_name = scan(name, 2);
end;
else l_name = scan(name, 3);
run;
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 save with the early bird rate—just $795!
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.