BookmarkSubscribeRSS Feed
mmea
Quartz | Level 8

How do I sum up a column of values if it matches an if statement?

 

fx 

if variable = XX and variable2 = YY then sum variable

3 REPLIES 3
PaigeMiller
Diamond | Level 26
proc summary data=have(where=(variable=XX and variable2=YY));
var myvariable;
output out=sums sum=;
run;
--
Paige Miller
ballardw
Super User

Data.

Example data is good.

Starting and desired result.

Since "sum" typically involves more than one value where the values currently reside is important.

With your "sum up column" then the order of data and such can become a very critical part of the solution.

So show us some data.

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

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