SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
progster
Fluorite | Level 6

hi all!

i have to sum 100 variables, i would like to do it without writing all the names  sum(var1,var2,var3, etc)

any good code, may be arrays?

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

You can use variable lists in sum you name variables with a common stem such as:

total = sum (of var:); to get the total of all variables whose names start with VAR.

If using a numeric suffix as in your example you specify a range:

total = sum (of var1-var100);

You can also mix lists and variable names.

View solution in original post

4 REPLIES 4
Reeza
Super User

More details.

Are you summing across a row, or column totals? Do the variables have any naming conventions? Are they side by side at least?

progster
Fluorite | Level 6

I sum columns totals. I previously rename them var1, var2, var3 and they are side by side, thanks!

Reeza
Super User

If you need column totals look into proc means and proc summary. Arrays in SAS operate across columns (So sum(var1-var100) would be for each row).

Note the colon after var, then semicolon.

proc means data=have;

var var:;

output out=want1 sum=/autoname;

run;

Or proc means data=have;

var var1-var100;

output out=want2 sum= /autoname;

run;

ballardw
Super User

You can use variable lists in sum you name variables with a common stem such as:

total = sum (of var:); to get the total of all variables whose names start with VAR.

If using a numeric suffix as in your example you specify a range:

total = sum (of var1-var100);

You can also mix lists and variable names.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 8209 views
  • 3 likes
  • 3 in conversation