BookmarkSubscribeRSS Feed
trishaechual
Calcite | Level 5

Hey all,

 

i'm trying to figure out how to eliminate repeating attributes in my dataset.

 

For example, i want:

 

TICKET_ID     STATUS1    STATUS2    STATUS3    STATUS5     STATUS6

 

 

to become:

 

TICKET_ID     STATUS

 

 

Assuming the statuses are unique.

 

Please help!       

2 REPLIES 2
PGStats
Opal | Level 21

This operation is usually called "going from wide to long". It can be performed with arrays, which offer efficiency and flexiblility, but a simpler way is to use proc transpose:

 

proc transpose data=have out=want(rename=col1=STATUS);
by ticket_id notsorted;
var status1-status6;
run;
PG
Reeza
Super User

Here are two links that illustrate using arrays & proc transpose

 

http://www.ats.ucla.edu/stat/sas/modules/wtol_transpose.htm

http://www.ats.ucla.edu/stat/sas/modules/widetolong_data.htm

 

Both methods are also used to go from long to wide. 

 

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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