Forum Discussion
RockVacirca
Oct 16, 2025Copper Contributor
Merging two Columns Vertically, not Horizontally
I wish to merge two columns. However, all suggestions I have found so far use horizontal merging, often using the Concatenate command, so cell A1 contains John, and cell B1 contains Jones, producing ...
- Oct 16, 2025
=A1&CHAR(10)&B1
This formula returns the intended result in my sample file. Wrap text must be activated.
OliverScheurich
Oct 16, 2025Gold Contributor
=A1&CHAR(10)&B1
This formula returns the intended result in my sample file. Wrap text must be activated.
RockVacirca
Oct 16, 2025Copper Contributor
Perfect, many thanks