If I have a large number of variables and I wish to perform a function that involves all of them ( say for example taking the sum of an observation across all the variables), is there a way to select all the variables rather than typing them in separately?
Thank you!
data test;
set sashelp.class;
array _n[*] _numeric_;
sum = sum(of _n[*]);
run;
To learn more look in the documentation for "SAS Variable Lists"
data test;
set sashelp.class;
array _n[*] _numeric_;
sum = sum(of _n[*]);
run;
To learn more look in the documentation for "SAS Variable Lists"
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.