|
Size: 765
Comment:
|
← Revision 3 as of 2025-04-08 16:55:27 ⇥
Size: 691
Comment: Cleanup
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| This function becomes available in Excel 2019 and Office 365. For legacy systems, use `CONCATENATE`. See details [[Excel/Concatenate|here]]. | The '''`CONCAT`''' function concatenates values. |
| Line 11: | Line 11: |
| == Description == This function was added in Excel 2019 and Office 365. For legacy systems, use [[Excel/Concatenate|CONCATENATE]]. ---- |
|
| Line 13: | Line 21: |
| `CONCAT` concatenates a series of 1 or more values into a single string value. The values can be string values or cell ranges. | Try: |
| Line 23: | Line 31: |
| === Order of Lists of Values === | === Order of Ranges === |
| Line 25: | Line 33: |
| Given the following table: | Given the below worksheet: |
Excel Concat
The CONCAT function concatenates values.
Contents
Description
This function was added in Excel 2019 and Office 365. For legacy systems, use CONCATENATE.
Usage
Try:
=CONCAT("Stream population for ", A2," ", A3, " is ", A4, "/mile.")
=CONCAT(B2," ", C2)
=CONCAT(A:A)
Order of Ranges
Given the below worksheet:
|
A |
B |
1 |
a |
b |
2 |
c |
d |
The formula =CONCAT(A:A,B:B) would return acbd, while the formula =CONCAT(A1:B2) would return abcd.
