Hello,

I am using the below code to export my descriptive statistics. All is good except that I get an empty column for mean and sd. Can anyone please let me know what I have missed in the code?

estpost tabstat ABWC Restate_dummy GC_dummy if BIG4 == 0, stat(N mean p25 median p75 sd) col(stat)
esttab . using Descriptives.rtf, cells("count mean(fmt(a2)) p25(fmt(a2)) p50(fmt(a2)) p75(fmt(a2)) sd(fmt(a2))") append

Thank you so much!