Combine two or more cells in Excel and Google Sheets

=CONCATENATE(A2,A3)

A2, A3 = cells which you want to combine. There are other formulas for combining multiple cells. Check example below

Check below for a detailed explanation with pictures and how to use formulas in Excel and Google Sheets.

Combine two or more cell in Excel

How to combine two or more cell in Excel?
Combine two or more cell in Excel

COMBINE TWO OR MORE CELL — EXCEL FORMULA AND EXAMPLE

  1. =A2&"-"&A3

  2. =CONCATENATE(A2,"-",A3)

  3. =TEXTJOIN("-",TRUE,A2:A3)

  4. =TRANSPOSE(TEXTJOIN("-",1,A2:A5))

💡 Download the Excel file used in this exercise here.

Combine two or more cell in Google Sheets

How to combine two or more cell in Google Sheets?
Combine two or more cell in Google Sheets

COMBINE TWO OR MORE CELL — GOOGLE SHEETS FORMULA AND EXAMPLE

  1. =A2&"-"&A3

  2. =CONCATENATE(A2,"-",A3)

  3. =TEXTJOIN("-",TRUE,A2:A3)

  4. =TRANSPOSE(TEXTJOIN("-",1,A2:A5))

  5. =ARRAYFORMULA(CONCATENATE(A2:A3&" "))

💡 View the Google Sheets file used in this exercise here.