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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 819 views
  • 3 likes
  • 4 in conversation