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.
Why not just use a SET statement?
data want ;
set a1-a3 ;
run;
@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.
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
;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.