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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.