You are not logged in. You can browse but not post. Login or Register by clicking 'Login or Register' at the top-right of this page. For more information on Statalist, see the FAQ.
generate str5 svar = "" // generate a missing string value
replace svar = "gnxl" if svar=="" // detect anbd replace a missing value
replace svar = "gnxl" if missing(svar) // another way to detect and replace a missing value
Comment