Combine values from different cells

This tutorial shows how to concatenate values from different cells into one cell using Excel formulas, with the CONCATENATE function and & sign

EXCEL FORMULA 1. Combine values from different cells using CONCATENATE function

EXCEL

Combine values from different cells

=CONCATENATE(B5,B6,B7,B8)
GENERIC FORMULA

=CONCATENATE(value1,value2,...)

ARGUMENTS
value1: The first value that you want to concatenate
value2: The second value that you want to concatenate

EXPLANATION

This formula uses the CONCATENATE function with the value that you want to combine, separated by a comma.

In this example the formula combines the values captured in cells B5 to B8 in the same order that they have been selected in the formula.

EXCEL FORMULA 2. Combine values from different cells using & sign

EXCEL

Combine values from different cells

=B5&B6&B7&B8
GENERIC FORMULA

=value1&value2&...

ARGUMENTS
value1: The first value that you want to concatenate
value2: The second value that you want to concatenate

EXPLANATION

This formula uses the & sign to combine the values from different cells.

In this example the formula combines the values captured in cells B5 to B8 in the same order that they have been selected in the formula.

RELATED TOPICS

Related Topic Description Related Topic and Description
How to combine values in separate cells with a comma (,)

RELATED FUNCTIONS

Related Functions Description Related Functions and Description
The Excel SUBSTITUTE function replaces characters with another in a specified string