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

Hello:  Can someone help explain to me why this codeset returns a value of 19, instead of 9?  For some reason, it's not applying my where clause as I'd expect.

%let dsid = %sysfunc(open(sashelp.class (where=(Sex="F"))));

%let Gender_NOBS =%sysfunc(attrn(&dsid,NOBS));

%let rc = %sysfunc(close(&dsid));

%put Gender Count =  &Gender_NOBS;

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20

From online doc:

NOBS

specifies the number of physical observations (including the observations that are marked for deletion). An active WHERE clause does not affect this number.

Data never sleeps

View solution in original post

2 REPLIES 2
LinusH
Tourmaline | Level 20

From online doc:

NOBS

specifies the number of physical observations (including the observations that are marked for deletion). An active WHERE clause does not affect this number.

Data never sleeps
ScottBass
Rhodochrosite | Level 12

I've attached a macro I use to determine the number of observations for various scenarios.  Perhaps you'll find it useful.  You'll have to modify it to remove the call to %parmv.


Please post your question as a self-contained data step in the form of "have" (source) and "want" (desired results).
I won't contribute to your post if I can't cut-and-paste your syntactically correct code into SAS.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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