BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Kalai2008
Pyrite | Level 9


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 !

 

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20
data have;
input Name $30.;
cards;
HEID LILIAN MARTINEZ SANCHEZ
GIRALDO MONTO ANGELA
;

data want;
 set have;
 count=countw(name,' ');
run;

View solution in original post

2 REPLIES 2
novinosrin
Tourmaline | Level 20
data have;
input Name $30.;
cards;
HEID LILIAN MARTINEZ SANCHEZ
GIRALDO MONTO ANGELA
;

data want;
 set have;
 count=countw(name,' ');
run;
How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 850 views
  • 1 like
  • 3 in conversation