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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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