I am trying to learn Stata's -collect- and to manipulate tables. I find the manipulating part hard. (It would be easier for me in R, but then Stata allows for saving table styles, so in the long run, table manipulation might be very easy in Stata.)

What I want (here illustrated with one model only)

Below is an example of what I want. The table is based on an -ologit- model. Array



The table above is developed with the following -collect layout-.

Code:
collect layout (colname) (result[_r_b _r_ci])
I would like to achieve the same when I compare several models. That is, I would like to have the CI to the right of the coefficient.


What I get when using several models


I end up with this: Array



The second table was developed with the following -collect layout-:

Code:
collect layout (colname#result) (model)
I have made various attempts with -collect layout- to get what I want, none of them successful in moving the 95% CI to separate columns.