BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
BenBrady
Obsidian | Level 7

I have a dataset similar to the table below (but much bigger). I want to know the number of 'yes' per group.

i.e so group a would be 2, b would 3 and c 1. Not sure how to write code to do this on the large scale

 

 

groupyes
a1
a1
a 
b1
b1
b1
c1
c 
c 
1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20
proc sql;
create table want as
select group, sum(yes) as count
from your_dataset
group by group;
quit;

View solution in original post

3 REPLIES 3
novinosrin
Tourmaline | Level 20
proc sql;
create table want as
select group, sum(yes) as count
from your_dataset
group by group;
quit;
novinosrin
Tourmaline | Level 20

Or use PROC SUMMARY

 

proc summary data=your_dataset nway;
class group;
var yes;
output out=want(drop=_:) sum=count;
run;
ballardw
Super User

If you want a report that people read, and may need to made "pretty" consider Proc Report:

 

proc report data=have;
   columns group yes;
   define group / group;
run;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 3 replies
  • 978 views
  • 0 likes
  • 3 in conversation