0
0
Excelspreadsheet~10 mins

CONCATENATE and CONCAT in Excel - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data contains words in two columns A and B that we will join together using CONCATENATE and CONCAT formulas.

CellValue
A1Hello
A2World
A3!
B1Good
B2Morning
B3Everyone
Formula Trace
=CONCATENATE(A1, " ", A2, A3)
Step 1: CONCATENATE("Hello", " ", "World", "!")
Cell Reference Map
Hello
World
!
The formula uses cells A1, A2, and A3 from column A to join their text values.
Result
    A       B       C
1 Hello   Good   Hello World!
2 World  Morning
3 !      Everyone

Cell C1 shows the result of CONCATENATE formula.
The result "Hello World!" appears in cell C1 after joining A1, a space, A2, and A3.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula =CONCATENATE(A1, " ", A2, A3) produce?
AHelloWorld!
BHello World!
CHello World !
DHello World
Key Result
CONCATENATE and CONCAT join multiple text values or cell contents into one continuous text string.