BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS_inquisitive
Lapis Lazuli | Level 10

Hello,

 

I have a data structure like this.

 

id time test_1 test_2

1   1     4       8

1   2     5       6

1   3     4       7

2   1     5       8

2   2     4       5

 

I want like this.

id time test     value

1  1    test_1    4

1  1    test_2    8

1  2    test_1    5

1  2    test_2    6

1  3    test_1    4

1  3    test_2    7

2  1    test_1    5

2  1    test_2    8

2  2    test_1    4

2  2    test_2    5

 

thanks for your help.

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Post test data in the form of a datastep.  As such this is just an example:

proc transpose data=have out=want;
  by id time;
  var test_:;
run;

View solution in original post

3 REPLIES 3

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1263 views
  • 4 likes
  • 4 in conversation