BookmarkSubscribeRSS Feed
Arun_shSAS
Fluorite | Level 6

data a1 a2 a3;

input x;

cards;

1

2

3

;

 

I want a1 a2 a3 to be appended into a single dataset using an array. Please, suggest. 

 

4 REPLIES 4
Tom
Super User Tom
Super User

Why not just use a SET statement?

data want ;
  set a1-a3 ;
run;
Arun_shSAS
Fluorite | Level 6
Using array.
Tom
Super User Tom
Super User

@Arun_shSAS wrote:
Using array.

That does not make any sense. The ARRAY statement in SAS is used as a way to make it easy to treat a series of variables as if they formed an array of values.  It has nothing whatsoever to do with datasets.

PGStats
Opal | Level 21

Your code will produce 3 identical datasets, each containing 3 observations. If you want just one dataset, use

 

data A;

input x;

cards;

1

2

3

;

PG

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
  • 4 replies
  • 1386 views
  • 1 like
  • 3 in conversation