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. 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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