SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
caveman529
Calcite | Level 5

Dear All:

Could you please tell me how to count a variable only if certain criteria is met in the proc sql syntax.  For example, I want to count both people and Hispanic people.  So I coded the following way, but the calculated p_count and chm_count is the same.  Also, if I want to count rows in which certain variable called sex is F, could I go for count(sex = "F")?

My old but stupid way is to use proc sql two time with the where statement and then join these two tables.  That is not cool.

Thanks!

proc sql;

     create table ipums2 as

           select distinct year, statefip, county, count(pid) as p_count, count(race=4) as hs_count

                from ipums

                     group by year, statefip, county

                           order by year, statefip, county;

quit;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Since SAS evaluates boolean expressions to 1/0 you can just change the second COUNT() to SUM().

View solution in original post

2 REPLIES 2
LinusH
Tourmaline | Level 20

I don't know what your final result should be (in what form). In many cases, just adding your column to the group by clause is sufficient. If you want specific grouping, you can hold these in control tables (and apply them using SAS formats or SQL join). Adding specific criteria as a basic technique can lead to hard coded programs which lead higher maintenance costs.

Having that said, you could combine case with aggregation functions:

sum(case race when 4 then 1 else 0 end) as hs_count

Data never sleeps
Tom
Super User Tom
Super User

Since SAS evaluates boolean expressions to 1/0 you can just change the second COUNT() to SUM().

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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
  • 2 replies
  • 58415 views
  • 5 likes
  • 3 in conversation