I am trying to append these tables but to no avail. Your solution will be much appreciated. My stata version is 17.
Code:
table (state period progexp) (command result) if savemoney==1 & earnmoney==1 & newsaver!=1, command(r(mean) r(lb) r(ub):ci means currsavings, level(95)) nformat(%5.2f `r(mean)' `r(lb)' `r(ub)') nototals table (state period progexp) (command result) if savemoney==1 & earnmoney==1 & newsaver==1, command(r(mean) r(lb) r(ub):ci means currsavings, level(95)) nformat(%5.2f `r(mean)' `r(lb)' `r(ub)') nototals append collect layout (state#period#progexp#command) (result)
Comment