Hi all,

I've run a few regressions and am trying to add rows indicating the presence of fixed effects, control variables etc to the output table. Following some of the earlier posts on this topic, I used the following code:
Code:
eststo clear

eststo: areg y x  c1 c2 ib(first).round,a(id)
estadd local household "Yes"
estadd local control "Yes"

eststo: areg z x c1 c2  ib(first).round,a(id)
estadd local household "Yes"
estadd local control "Yes"

esttab est1 est2 using "filepath\1_xyz.tex", s(N household control , label("N" "Household FE" "Control variables"))se ar2 starlevels(* 0.10 ** 0.05 *** 0.01)                            ///
        title(Regression 1)
esttab is from SSC

However, I'm getting the error:
Code:
file \1_xyz.tex could not be opened
But i have earlier used
Code:
esttab est1 est2 using "filepath\1_xyz.tex", se ar2 starlevels(* 0.10 ** 0.05 *** 0.01)
without estadd, or s(), and it has worked fine.

Would appreciate if someone tells me what I'm doing wrong here and how to go about this problem.

Thanks