Hello,
I need help here. I have a column that contains names, separated by space.I am trying to count the names.
I have tried Scan function but that returns the nth word from a character string.
scan(name, 1, ' ') as first_name , scan(name, 2, ' ') as second_name
Data have:
Name
HEID LILIAN MARTINEZ SANCHEZ
GIRALDO MONTO ANGELA
Data Want:
Name Count
HEID LILIAN MARTINEZ SANCHEZ 4
GIRALDO MONTO ANGELA 3
Thanks for looking !
data have;
input Name $30.;
cards;
HEID LILIAN MARTINEZ SANCHEZ
GIRALDO MONTO ANGELA
;
data want;
set have;
count=countw(name,' ');
run;
data have;
input Name $30.;
cards;
HEID LILIAN MARTINEZ SANCHEZ
GIRALDO MONTO ANGELA
;
data want;
set have;
count=countw(name,' ');
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.