Hi,

Code:
xtivreg  ChgLCon (L.Underperformance_Peer=L2.Financial_Crisis) L.Cost_Income_Ratio L.HH_index L.ST_interest L.LT_interest L.Inflation i.statefips i.qdate if sz_large==1, fe first vce(cluster rssd9001)
outreg2 using Step2b.doc, addstat(R-sq within, e(r2_w),R-sq between,e(r2_b) , R-sq overall, e(r2_o), Prob > F, e(F_fp))
1) is it possible to have the constant term as a first output in the table when using outreg2. Currently it is the last term in the output.
2) R squared within is sometimes a "." because when it is negative I believe Stata suppresses the output to report it as a missing value. The otput of outreg2 yields an error in this case. How to overcome this problem?
3) is it possible to post multiple tables in Step2.doc? for example if I ran another regression:
Code:
xtivreg  ChgLCon (L.Underperformance_Peer=L2.Financial_Crisis) L.Cost_Income_Ratio L.HH_index L.ST_interest L.LT_interest L.Inflation i.statefips i.qdate if sz_medium==1, fe first vce(cluster rssd9001)
how can i report the output of this regression in another table in Step2b.doc

Thanks