BookmarkSubscribeRSS Feed
akordula
Calcite | Level 5

I have data in a database in the below format:

 

Key

X1

X2

X3

Y1

Y2

Y3

Z1

Z2

Z3

12345

x

x

x

 

 

 

 

 

 

12345

 

 

 

y

y

y

 

 

 

12345

 

 

 

 

 

 

z

z

z

 

I want to know if there’s a way to combine these three records into one record that would be represented like this:

 

Key

X1

X2

X3

Y1

Y2

Y3

Z1

Z2

Z3

12345

x

x

x

y

y

y

z

z

z

4 REPLIES 4
data_null__
Jade | Level 19
data flat;
update have(obs=0) have;
by key;
run;
LinusH
Tourmaline | Level 20

Something tells me that the didin't look like this originally, and perhaps that there's a better way solve this in an earlier stage.

 

I don't know what kind of real data this is (or is it real, perhaps just training?), but I would definitely consider to transpose the data, much easier to work with.

Data never sleeps
akordula
Calcite | Level 5

You're right in saying the data didn't look like this originally, but there has been a change in how the data is presented to us (not controlled by us).

 

Unfortunately, there's no way for us to revert back to the "old" way and this is how it will be going forward.

LinusH
Tourmaline | Level 20
Ok. Then it's transpose time 😆
Data never sleeps

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