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

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