data test;
infile datalines;
input var $;
datalines;
alfred876
nancy65
abst656
tre656cy
1256nan
;
run;
Hey all,
Here's one question ,
Consider above dataset TEST in that there is one variable VAR.
i want another variable consider VAR2 that contains the length of values of VAR.
example:
VAR VAR1
alfred876 9
nancy65 7
abst656 7
tre656cy 8
1256nan 7
Output dataset should be like above dataset in example.
Thanks in advance.
data have;
input VAR $10.;
datalines;
alfred876
nancy65
abst656
tre656cy
1256nan
;
data want;
set have;
var1=length(var);
run;
data have;
input VAR $10.;
datalines;
alfred876
nancy65
abst656
tre656cy
1256nan
;
data want;
set have;
var1=length(var);
run;
Use the LENGTH function.
Examples are here:
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.