Hello All,

This should be a very easy question, but I am unable to figure out how to save the output from psmatch2. Specifically, I would like to output the coefficient, z-statistic, and significance to excel. To install psmatch2,
Code:
ssc install psmatch2

An propensity score match example,

Code:
sysuse auto.dta, clear

psmatch2 foreign price mpg weight, logit
If I try and save using outreg2, I get the following error:

matrix e(b) not found; run/post a regression, or specify varlist for non-regression outputs
r(111);


Moreover,
Code:
eret list
returns nothing.

And
Code:
return list
returns:

macros:
r(exog) : "price mpg weight"


I am confused why this is so difficult? I searched statalist and was unable to find any responses to this question.

Thanks in advance.