Hi,

I have the following variable "coeff"

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input float coeff
.0003917254
          .
 .005586416
 -.02751333
  .04031171
-.018891364
.0009078109
          .
          .
          .
end
The missing values on the 7th, 8th, and 9th rows are okay, but I want to get rid of the missing value on the 2nd row. I cannot simply drop the 2nd row since there are other variables in the data. In the end, I want something like this:

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input float coeff
.0003917254
 .005586416
 -.02751333
  .04031171
-.018891364
.0009078109
          .
          .
          .
          .
end
Are there any good ways to accomplish this? Thanks a lot in advance!