Concat
CONCAT Function¶
Introduced in Excel 2016, the CONCAT function is used to join multiple text strings into one single string. It's an improvement and simplification over the older CONCATENATE function, allowing you to combine text from a range of cells without having to reference each cell individually.
Syntax:¶
CONCAT(text1, [text2], ...)
- text1, text2, ...: The text values or ranges that you want to concatenate. This can include individual text strings, cell references, or cell ranges.
Examples:¶
=CONCAT("Hello", " ", "World!")would returnHello World!.=CONCAT(A1, B1)would combine the values in cells A1 and B1.=CONCAT(A1:A3)would concatenate all values in the range A1 to A3.
Note: One of the key advantages of
CONCAToverCONCATENATEis its ability to handle ranges. Additionally, whileCONCATENATEis still available in Excel for backward compatibility, it's recommended to useCONCATorTEXTJOIN(which offers delimiter options) in newer versions of Excel for a more versatile text combining experience.