Forum Discussion
Excel Combing Data Cells
- Jan 25, 2019
=concatenate(a1," ",f1," ",k1," ", t1)
Thanks so much for the assistance. I want to combine the first and last name in columns E and F respectively with the result in column D. First name first.
See attached.
Cells in this column are formatted as text
thus all what you enter is considered as text, includes formulas. You have text of formulas.
You need to apply General format (select entire column and on ribbon apply it from Home->Number section). After that re-enter formulas.
Both
=CONCATENATE(E2," ",F2)
and
=E3 &" " & F3
work. Please check in attached file.
- SergeiBaklanDec 16, 2020Diamond Contributor
McGeheeWoolf , you are welcome
- McGeheeWoolfDec 16, 2020Copper Contributor
Worked beautifully. Thanks again!
- SergeiBaklanDec 12, 2020Diamond Contributor
- McGeheeWoolfDec 11, 2020Copper Contributor
Is there a way after the first and last names are combined that I can somehow change the formatting of the eliminate the two source columns (E and F) and have the result remain?
- McGeheeWoolfDec 11, 2020Copper Contributor
That worked! Thanks so much Sergei. Have a great weekend.