I am trying to combine a list of names from different cells into 1 cell with a carriage return between each name so the names appear vertically like:

Michaelangelo
Ann
Bob

And not what I would get if I just change the column width:

Michaelangelo
Ann Bob

I tried using =A1&Char(13)&B1&Char(13) but that didn't work. (I tried all non-printing characters I think.) Suggestions? Thanks.