How to check for ANY missing values

stata

Solution

One command is:

misstable summarize

But see also:

help missing##useful

and more generally:

help missing

Problem

I know a way of finding and identifying missing values for a particular variable. For the variable `avedmajor`, I could do ``` tab avedmajor, m ``` Then, ``` gen avedmajormissing=0 replace avedmajormissing=1 if avedmajor==. ``` But how to see if my dataset has missing values in any of the variables without going through each one of them? Thanks.

Original source