BookmarkSubscribeRSS Feed
Saikiran_Mamidi
Obsidian | Level 7

DATA HAVE;

INPUT NAME$30.;

CARDS;

SAI KIRAN PATEL

UMA 

RAVI KIRAN

;

RUN;

 

   I WANT DATA LIKE THIS WITHOUT USING ARRAYS

F-NAME         M-NAME            L-NAME

SAI                 KIRAN                 PATEL

UMA

RAVI                                          KIRAN

 

CAN I GET CODE PLEASE?  THANKS

 

 

 

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

Try this

 

data want(drop=name);
   set have;
   f_name = scan(name, 1);
   m_name = scan(name, 2);
   l_name = scan(name, 3);
run;
Saikiran_Mamidi
Obsidian | Level 7

EDITED DATA ABOVE PLEASE CHECK AGAIN?

 

PeterClemmensen
Tourmaline | Level 20

Quick fix

 

data want(drop=name);
   set have;
   f_name = scan(name, 1);
   m_name = scan(name, 2);
   if countw(name) = 2 then do;
      call missing(m_name);
      l_name = scan(name, 2);
   end;
   else l_name = scan(name, 3);
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 16. 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
  • 3 replies
  • 446 views
  • 1 like
  • 2 in conversation