Dear Researchers,
I am using the generalized DID model and the code is below:
Code:
xtreg perf i.Event##(c.Age c.Size c.growth) i.Year, fe cluster ( COMPANY)
And, I am trying to export the results from Stata to Word, where I need the results to be rounded to three decimal places and the stars and significance customized. Thus, I have applied the followings and the results are in line with what I need.

Code:
xtreg perf i.Event##(c.Age c.Size c.growth) i.Year, fe cluster ( COMPANY)
est sto m1
esttab m1, b (%9.3f)se(%9.3f) obslast scalar(F) r2(%9.3f) star(* 0.1 ** 0.05 *** 0.01)
esttab m1 using models.rtf,replace b (%9.3f)se(%9.3f) obslast scalar(F) r2(%9.3f) star(* 0.1 ** 0.05 *** 0.01)
But the thing is, I need to have the results of the below code also beside the above regression results in the same table
Code:
margins Event, dydx(Age Size growth)

Do you have any idea how to do that?

Many thanks.