BookmarkSubscribeRSS Feed
confused_saser
Obsidian | Level 7

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?

 

4 REPLIES 4
Reeza
Super User

It's not clear what you're trying to do. 
Can you demonstrate your issue with sample data?

Astounding
PROC Star

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.

mnjtrana
Pyrite | Level 9
I think this should work as per your query,

Cheers from India!

Manjeet
Patrick
Opal | Level 21

@confused_saser

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?

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 connect to databases in SAS Viya

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.

Discussion stats
  • 4 replies
  • 2651 views
  • 1 like
  • 5 in conversation