Hello
I have to browse cases with missing values in variables from entire data set which shows output one by one , flashing on screen and stops with last output.
Is there a way to append all output generated from br command one by one internally , in a separate stata data file or excel file, so all comes as appended in one file.
Below is my command.
foreach var of varlist _all {
br sitename pid dos dor `var' if missing(`var')
}
Or is there any other way to list observations with missing values by variables.
Thanks
I have to browse cases with missing values in variables from entire data set which shows output one by one , flashing on screen and stops with last output.
Is there a way to append all output generated from br command one by one internally , in a separate stata data file or excel file, so all comes as appended in one file.
Below is my command.
foreach var of varlist _all {
br sitename pid dos dor `var' if missing(`var')
}
Or is there any other way to list observations with missing values by variables.
Thanks

Comment