Lorna has attended:
Excel Advanced course
Merging columns
Is it possible to merge two columns so that the data in both merges into one? For example one column has first names and the other has surnames, can they be merged so each cell contains both the first and surname?
RE: Merging columns
Hi Lorna
It's best to use concatenate for this.
let's say your data is in columns A & B
in cell C1, type =concatenate(A1, ,B1)
This will pull the names together. Notice that I've put a space in between the two columns in the brackets. This will put a space between the first name and surname for you..
Hope this helps
Paul