Hi all,

I'm trying to save some regression results, and I'm using putpdf:

Code:
putpdf begin 

// Saving output
putpdf paragraph
putpdf text ("Total Man Hours & Cumulative Production")
regress logthpp logcpn legacy legxcpn 
putpdf table mytable = etable


putpdf save results.pdf, replace
This is working just fine, except I would like the table to include the r-squared result and number of observations. How can I do that? Thanks very much for any advice.