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

Dear All,

I have the following dataset:

data have;

     input ID Jan Feb;

datalines;

100     1     2  

200     3     4    

;


I would like to put the values of the two columns Jan and Feb in a unique column, named value, and add a column named month which should indicate whether the value comes from the column Jan or Feb of the dataset have. That is, I would like to obtain the following dataset:


data want;

     input ID month value;

datalines;

100     Jan     1    

100     Feb     2    

200     Jan     3

200     Feb     4

;


Any help would be highly appreciated.

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Proc Transpose:

proc transpose data=have out=want

  (rename=(_name_=Month COL1= Value));

by ID;

run;

View solution in original post

1 REPLY 1
Reeza
Super User

Proc Transpose:

proc transpose data=have out=want

  (rename=(_name_=Month COL1= Value));

by ID;

run;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1 reply
  • 299 views
  • 0 likes
  • 2 in conversation