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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 4554 views
  • 0 likes
  • 6 in conversation