I'm trying to combine many variables into one variable.
I'm trying to APPEND the values of many variables into a new variable and create a new separate table for this.
Can someone please tell me how to do this with an example?
It's not clear what you're trying to do.
Can you demonstrate your issue with sample data?
This might work:
data want;
set have;
new_variable = catx('|', of _all_);
run;
You could always try it and see. But it is still very unclear how it would help you even if you could get the result you are asking for.
Can be done but it somehow doesn't feel right what you're asking for.
Why do you want to do this? What's the bigger problem you want to solve?
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.