Hello,
I'm running the following loop:
Some numbers are missing in the range [1,742]. How can I tell stata to ignore the remaining commands when the first one is not working?
I'm running the following loop:
Code:
cd "..."
forval i = 1(1)742 {
capture noisily import delimited `i'.txt, delimiter(space) clear
rename (v1 v2 v3 v4 v5) (year month place dist state)
save `i', replace
}

Comment