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

Hi All,

 

I have a variable "Labels" with some having multiple values (which is identified by ",".)

I need to separate these values and create new records along with variable "Total Twitter Impressions".  

 

eg.

raw data

HitmonTran_0-1600445478364.png

 

 

want data:

HitmonTran_1-1600445653795.png

 

thank you all

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

I am not going to retype anything to create data and can't code from pictures.

This example creates an example data set with pretty trivial data to do similar to what you want.

 

data have;
   input string :$15. value;
datalines;
a       15
a,b,c   25
b,c,d   0
b,d     5
;

data want;
   set have;
   length newstring $ 10;
   do i= 1 to countw(string,',');
      newstring = scan(string,i,',');
      output;
   end;
   keep newstring value;
run;


Key elements: The length of the Newstring (or what ever you want to name your new variable) needs to be long enough to hold the longest expected value.

The ',' in the COUNTW and SCAN functions is so anything other than a comma is not treated as a boundary between values.

The explicit output statement writes the output for each time through the Do loop, which is counting the number of comma delimited values with Scan selecting the matching value.

The Keep is retain the specific variables. You may or may not want to keep your original variable.

 

 

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

So is the logic that you want to implement something like this:

 

Create a record with text from column A before the comma, and then another record with text from column A after the comma but before the next comma, and so on splitting at every comma, all such records having the same value that was in column B?

--
Paige Miller
ballardw
Super User

I am not going to retype anything to create data and can't code from pictures.

This example creates an example data set with pretty trivial data to do similar to what you want.

 

data have;
   input string :$15. value;
datalines;
a       15
a,b,c   25
b,c,d   0
b,d     5
;

data want;
   set have;
   length newstring $ 10;
   do i= 1 to countw(string,',');
      newstring = scan(string,i,',');
      output;
   end;
   keep newstring value;
run;


Key elements: The length of the Newstring (or what ever you want to name your new variable) needs to be long enough to hold the longest expected value.

The ',' in the COUNTW and SCAN functions is so anything other than a comma is not treated as a boundary between values.

The explicit output statement writes the output for each time through the Do loop, which is counting the number of comma delimited values with Scan selecting the matching value.

The Keep is retain the specific variables. You may or may not want to keep your original variable.

 

 

HitmonTran
Pyrite | Level 9
thank you very much! this is awesome

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
  • 3 replies
  • 830 views
  • 0 likes
  • 3 in conversation