What is the best tool for combination two name in excel sheet?

Hello everyone,

I have an Excel sheet with two columns containing first and last names respectively. I want to combine these two columns into a single column that contains the full name. What is the best tool or method to achieve this?

I have tried using the CONCATENATE function, but it requires me to manually enter each cell reference, which is time-consuming and prone to errors. Is there a more efficient way to do this, such as using a formula that can automatically combine the two columns for all rows in the sheet?

I would appreciate any suggestions or recommendations for tools or methods that you have used to combine columns in Excel. Thank you in advance for your help!

I don’t understand why you have to manually enter each cell reference while using the CONCATENATE function. You enter the formula for the first row only then you populate other rows by copy paste/drag/double click.
If you want to combine values of columns A and B to column C then you write this formula to the C column.

=A1&" "&B1

OR

= CONCATENATE(A1, " ",B1)

@Anh_Vu_Nguy_n Ok thanks for it
Regards