When manipulating text, combining two strings into a single string is one that is often required.
Excel can do this in a couple of ways, the first method most will use is by using the Concatenate function.
Concatenate
= concatenate(text1, [text2], ...)
In this example, the contents of the two cells will be combined into a single string
to result in the following:
The same functionality can also be achieved using the ampersand symbol as seen here:
will return the following:
Comments
Post a Comment