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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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