BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
sydneyb
Calcite | Level 5

Hi all, I am trying to combine variables across multiple observations. I have four different surveys that all ask the same questions on a likert scale and I would like to combine the answers into one variable.

My data looks like this:

ID     a_question       b_question      c_question       d_question

1             1

2                                      2

3                                                                3

4                                                                                     4

5             1

6                                        2

 

I would like my dataset to look like this:

ID                    abcd_question

1                               1

2                               2

3                               3

4                               4

5                               1

6                               2

 

Thanks for any insight!

 

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

Use the coalesce function.

abcd_question=coalesce(a_question,b_question,c_question,d_question);

View solution in original post

2 REPLIES 2
ChrisNZ
Tourmaline | Level 20

Use the coalesce function.

abcd_question=coalesce(a_question,b_question,c_question,d_question);

sydneyb
Calcite | Level 5

That worked, thanks so much! I thought I had tried that before but I must have had a typo or some other syntax misstep. 

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