Hello,

I am trying to use tabout to export basic tables to Excel. I would like to include both percentages and their confidence intervals. However, when I ask for confidence intervals (see code below) the command is completely ignored. If I change the request from ci to se, it spits out standard errors just fine. Any idea why I cannot get confidence intervals? I've tried with both Stata 13 and Stata 16.

svyset[pweight=perwt], vce(brr) brrweight(repwtp1-repwtp80) fay(.5) mse
tabout poc youngpar using "table1.xls" if child_SF==1, replace svy cells(row ci) format(2) percent cibnone cisep(-)

Thank you!