Hi all,

I'm running a regression on panel data, where I want the regression to be run separately on each catagory (Fullid):

Code:
bysort Fullid: regress height sign
I know that my regression is working because I can see the table results as they pop up in Stata. However, when I got to save them using:

Code:
esttab using "results", rtf replace
I end up with only the final regression result (ex. the result of the regression on the last category). Does anyone have advice on how to get the results to save for each category that I run the regression for?

Thank you!