Well, first of all, your -describe- command does not tell you anything about the number of non-missing observations. It only gives information about storage type, labeling, and formatting. To get a handle on missing values in your data, a first step might be -summarize-.
In any case, evidently your data is not what you think it is. When Stata says "no observations," I have known it to be wrong about that. But since it appears that your -count if !missing- command says you have 234 observations for which whatever variable you counted has non-missing values, let me suggest another possibility. It may be that one of your regression variables is stored as a string variable. If so, for the purposes of a regression command, it counts as having all values missing. Here the -describe- command is helpful. Run it with all your regression variables and see if one of them is a string. If that is the case, you will need to convert it to numeric.
In any case, evidently your data is not what you think it is. When Stata says "no observations," I have known it to be wrong about that. But since it appears that your -count if !missing- command says you have 234 observations for which whatever variable you counted has non-missing values, let me suggest another possibility. It may be that one of your regression variables is stored as a string variable. If so, for the purposes of a regression command, it counts as having all values missing. Here the -describe- command is helpful. Run it with all your regression variables and see if one of them is a string. If that is the case, you will need to convert it to numeric.
Comment