BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
malena
Calcite | Level 5
I have a dataset with id, release_dare, and a a variable called datenum

Id $4
release_date mmddyy.
Datenum $4

There are several rows per id since each can have many release dates.

I want to create a one row per person with the following:

Id, month1-month24 that each contains the datenum variable for the corresponding month of the release from release_date. If there sre 2 or more on the same month, concatenate the datenum.

So if i have this as input:

Id, Release_date, Datenum
1, 03/02/11, 1245
2, 01/01/11, 3423
2, 01/10/11, 5432

At the end, i want this

Id, month1, month2, month 3......month24
1, , , 1245, .......
2, 34235432, ,.....
1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

Like this?

data HAVE;
input ID RELEASE_DATE mmddyy8. DATENUM   ;
cards;
1 03/02/11 1245
2 01/01/11 3423
2 01/10/11 5432
run;
data WANT;
  set HAVE;
  by ID ;
  array MONTH[24] $32;
  retain MONTH1-MONTH24;
  INDEX=intck('month','01dec2010'd,RELEASE_DATE);
  MONTH[INDEX]=catt(MONTH[INDEX],DATENUM);
  if last.ID then do;
    output;
    call missing(of MONTH{*]);
  end;
run;
proc print noobs;
  var ID MONTH1-MONTH3;
run;

SAS Output

ID MONTH1 MONTH2 MONTH3
1     1245
2 34235432    

 

 

View solution in original post

3 REPLIES 3
ChrisNZ
Tourmaline | Level 20

Like this?

data HAVE;
input ID RELEASE_DATE mmddyy8. DATENUM   ;
cards;
1 03/02/11 1245
2 01/01/11 3423
2 01/10/11 5432
run;
data WANT;
  set HAVE;
  by ID ;
  array MONTH[24] $32;
  retain MONTH1-MONTH24;
  INDEX=intck('month','01dec2010'd,RELEASE_DATE);
  MONTH[INDEX]=catt(MONTH[INDEX],DATENUM);
  if last.ID then do;
    output;
    call missing(of MONTH{*]);
  end;
run;
proc print noobs;
  var ID MONTH1-MONTH3;
run;

SAS Output

ID MONTH1 MONTH2 MONTH3
1     1245
2 34235432    

 

 

malena
Calcite | Level 5

thank you! that worked perfectly!!

Reeza
Super User

If you need it for a report use proc tabulate. 

 

 

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