Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
When CONCATENATE (or the & operator) is not working, the result is either an error, the values are joined without the expected separator, numbers are joined with wrong formatting (e.g. dates appearing as serial numbers), or the formula shows as text rather than computing.
=CONCATENATE(A2,B2,C2)=CONCATENATE(A2," ",TEXT(B2,"dd/mm/yyyy")," ",C2)Added a space literal between each value and used TEXT() to format B2 as a readable date rather than a serial number before concatenation.
Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Stop hunting errors by hand.
Upload your spreadsheet and the Auditor flags every CONCAT and broken formula at once — or paste this one formula and get the fix explained.
CONCATENATE accepts up to 255 individual cell references. CONCAT (Excel 2019+, Sheets) is a shorter alias that also accepts ranges. TEXTJOIN (Excel 2019+, Sheets) adds a delimiter and can skip blanks — it is the best choice for joining a range of cells.
Use CHAR(10) in Excel and Sheets: =A2&CHAR(10)&B2. Make sure the cell has Wrap Text enabled (Home > Wrap Text in Excel, Format > Text wrapping in Sheets) so the line break is visible.
Concatenation strips date formatting and shows the underlying serial number. Wrap the date reference with TEXT(): =A2&" "&TEXT(B2,"d mmm yyyy") to display it in a readable format.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: