Hi Statalist! A quick and (likely) easy question here: I have been searching for ways to find the number of respondents (not total responses) to a "select all" question (so responses will be much higher than respondents). I am looking to figure out the # of respondents by various groups, and I came across the user-written -mdesc-, which I believe would look something like:

Code:
mdesc questionvar if var2 == 2 | var3 == 5
But this gives me Missing and Total, and while I can just subtract the Missing number from the Total number to get respondents, I was wondering if there was a way to skip that step and show the number of respondents (or perhaps, in this case, just the number of non-missing) outright? Thanks much!