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

Hello, 

 

I would like to seek for your help, I need to separate the column data into multiple Rows. 

 

Sample Data:

 

Column 1                  Column 2                     Column 3          

Apple                        Water                            Lunch | Dinner

 

 Result Data:

Column 1                  Column 2                     Column 3          

Apple                        Water                            Lunch

Apple                        Water                            Dinner

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

This may get you started

data want;
   set have;
   oldcolumn3= column3;
   do i= 1 to (countw(oldcolumn3));
      column3 = scan(oldcolumn3, i,' |');
      output;
   end;
   drop i oldcolumn3;
run;

if you have words with embedded blanks you may need to change the ' |' to '|'

 

View solution in original post

5 REPLIES 5
ballardw
Super User

This may get you started

data want;
   set have;
   oldcolumn3= column3;
   do i= 1 to (countw(oldcolumn3));
      column3 = scan(oldcolumn3, i,' |');
      output;
   end;
   drop i oldcolumn3;
run;

if you have words with embedded blanks you may need to change the ' |' to '|'

 

tunnii
Fluorite | Level 6

Same concept I just did do while. 

 

data output;
      set filename;
      oldcol3=col3;
      do while(scan(oldcol3,i,"|") ne "");
          col3=scan(oldcol3,i,'|');
          i+1; 
          output;
       end; 

drop oldcol3 i;
run;

 

kiranv_
Rhodochrosite | Level 12

if everything is in same pattern all the time then this should work

data abc;
informat fruit fruit1 fruit2 $20.;
input fruit fruit1 fruit2  $;
datalines;
orange apple mango|banana
;

proc sql;
select fruit, fruit1, scan(fruit2,1,'|') from abc
union all
select fruit, fruit1, scan(fruit2,2,'|') from abc;

 

tunnii
Fluorite | Level 6
This also work but uses more CPU time. Thank you for your help.
Peter_C
Rhodochrosite | Level 12
If this is external data to be read with INPUT the result couldn't be simpler😀

data abc;
Infile datalines dlm= ' |' truncover ;
Length fruit1-fruit3 $20.;
input fruit- fruit3 @ ;
output ;
input fruit3 $;
If fruit3 ne ' ' then output ;
datalines;
orange apple mango|banana
Lemon tangerine pear|apple
;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 5 replies
  • 5851 views
  • 3 likes
  • 4 in conversation