Hello,
My coding (after preceding cleaning lines) is as follows and it gives "invalid file specification" error:
While the same code worked for another file, I have difficulty here.
I checked the other Posts asking about the similar error but couldn't find a proper solution for my case.
Thank you!
My coding (after preceding cleaning lines) is as follows and it gives "invalid file specification" error:
Code:
forval n=2(1)33{
*codes for importing and cleaning data
tempfile teacher_`n'
save `teacher_`n'', replace
}
use `teacher_2'
forval n=3(1)33{
append using `teacher_`n''
}
I checked the other Posts asking about the similar error but couldn't find a proper solution for my case.
Thank you!

Comment