Dear Stata Users,

I want to export the correlation table (using "corsp" command) to stata. I use the code below, but it does not export the whole table

Code:
est clear
eststo: corsp var1 var2 var3, pw sig
eststo corsp
esttab corsp using desc.tex, replace cell("var1(fmt(3)) var2(fmt(3)) var3(fmt(3))")
Please, help me with this issue.