BookmarkSubscribeRSS Feed
kundamn0
Calcite | Level 5

Hey Experts,

 

I have a column data from my DB with a lot of values combined in a column. Each entry has multiple item ids separated by commas. I now need them in multiple columns. Any help will be appreciated.

 

Regards,

5 REPLIES 5
Yavuz
Quartz | Level 8
You can google search for "sas csv import"
Also you can import file from sas "file - import csv file" section

PROC IMPORT DATAFILE="C:\test.csv"
OUT=SASCrunch
DBMS=csv
REPLACE;
GETNAMES=Yes;
RUN;
Ksharp
Super User
data have;
text='xx,ee,tt       ';output;
text='jj,ii,ii,kk';output;
run;
proc sql;
select max(countw(text,',')) into : max from have;
quit;
data want;
 set have;
 array x{&max} $ 100;
 do i=1 to countw(text,',');
  x{i}=scan(text,i,',');
 end;
 drop i;
run;
SASComm1
Calcite | Level 5

Much appreciated if one can show how to split the values into a single column in multiple rows.

Patrick
Opal | Level 21

@SASComm1 wrote:

Much appreciated if one can show how to split the values into a single column in multiple rows.


See below @Ksharp's sample script repurposed for a single value in multiple rows.

data have;
  text='xx,ee,tt       ';
  output;
  text='jj,ii,ii,kk';
  output;
run;

data want;
  set have;

  do i=1 to countw(text,',');
    text2=scan(text,i,',');
    output;
  end;

  drop i;
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
  • 5 replies
  • 4913 views
  • 0 likes
  • 6 in conversation