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.