BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. 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

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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