BookmarkSubscribeRSS Feed
Mattress58
Fluorite | Level 6

 

how can I get these on the same row to look like this

 

Region  Vehicle  year1  color1   year2  color 2

South   impala    2014    blue     2015     black

 

 

Region  Vehicle  year1  color1   year2  color 2

South   impala    2014   blue

South   impala                              2015     black

 

2 REPLIES 2
LinusH
Tourmaline | Level 20
Depends on how the rest of your data set look like.
How did you get this layout? It looks like a transpose that went wrong.
I would prefer a normalized table design, which is more flexible to most reporting requirements. That would mean to transpose columns to rows, having one year, and one colour column. For your particular example it would be a quite simple use of the coalesce () function.
Data never sleeps
Astounding
PROC Star

Here's an approach that doesn't require you to spell out all the variables you need to work with:

 

proc sort data=have;

by region vehicle;

run;

 

data want;

update have (obs=0) have;

by region vehicle;

run;

 

Good luck.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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