=first&" "&last
If you need to join separate first and last names together into a single full name, you can easily do so with concatenation using the ampersand (&) character. In the generic version of the formula above, first is first name, and last is last name.
In the example, the active cell contains this formula:
=B5&" "&C5
Here’s how the formula works:
The ampersand character (&) is a special operator in Excel that is used for concatenation. Concatenation is just a fancy word for “join”.
On the formula, the text in B5 “Dominic” is being joined to a space character ” ” and then to the text in cell C5, “Johanson”.
Whenever you use concatenation with literal text entered directly inside the formula, make sure to enclose the text in double quotes (“”). The ampersands are never enclosed in quotes unless you want an ampersand to appear in the result of a formula as literal text.
You can also use the CONCATENATE function to join text. For this example, the formula would be:
=CONCATENATE(B5," ",C5)
The CONCATENATE function keeps things tidy, but I recommend that you use the ampersand in most cases, because ampersands create shorter formulas, and they are more flexible when you need to use conditionals like IF together with concatenation.