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"
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.