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"
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.