#1 Data Analytics Program in India
₹2,499₹1,499Enroll Now
Module 4
3 min

CONCAT Function

Join text from multiple cells into one

CONCAT Function

CONCAT joins text from different cells into one cell.

CONCAT Overview

What is CONCAT?

CONCAT = Concatenate = Join together

It takes text from many cells and puts them in one cell.

The Formula

=CONCAT(text1, text2, text3, ...)

Simple Example

ABC
JohnSmith=CONCAT(A1, B1)
Result:JohnSmith
2 rows

Add Space Between

=CONCAT(A1, " ", B1)

Result: John Smith

The " " adds a space between.

Join Many Cells

=CONCAT(A1, " ", B1, " - ", C1)

A1B1C1Result
JohnSmithSalesJohn Smith - Sales
1 row

CONCAT Example

CONCAT vs &

You can also use & to join text:

=A1 & " " & B1

Same result as CONCAT!

<DataTable headers={["Method", "Formula", "Result"]} rows={[ ["CONCAT", "=CONCAT(A1, " ", B1)", "John Smith"], ["&", "=A1 & " " & B1", "John Smith"] ]} />

Common Uses

UseFormula
Full name=CONCAT(FirstName, ' ', LastName)
Address=CONCAT(City, ', ', State)
Email=CONCAT(Name, '@company.com')
File path=CONCAT(Folder, '/', FileName)
4 rows

Summary

  • CONCAT joins text together
  • Add " " for space between words
  • Use & as shortcut: =A1 & B1
  • Great for names, addresses, emails