Description
Combines the text from multiple ranges or arrays.
NOTE
- The returned string cannot exceed 32767 characters (cell limit).
- Non-string values will be implicitly converted.
Syntax
Copied!=CONCAT(text1, [text2], ...)
SAMPLE data
| | A | B | C | D | E |
|:---:|:----|:-------|:------|----:|:----|
| 1 | | | | | |
|-----|-----|--------|-------|-----|-----|
| 2 | | | | | |
|-----|-----|--------|-------|-----|-----|
| 3 | | Orange | Pink | 1 | |
|-----|-----|--------|-------|-----|-----|
| 4 | | Apple | Red | 2 | |
|-----|-----|--------|-------|-----|-----|
| 5 | | Lemon | Green | 3 | |
|-----|-----|--------|-------|-----|-----|
| 6 | | | | | |
|-----|-----|--------|-------|-----|-----|
| 7 | | | | | |
|-----|-----|--------|-------|-----|-----|
EXAMPLE 1
Copied!//𝘤𝘰𝘯𝘤𝘢𝘵𝘦𝘯𝘢𝘵𝘦 𝘢𝘭𝘭 𝘷𝘢𝘭𝘶𝘦𝘴 𝘪𝘯 𝘢 𝘳𝘢𝘯𝘨𝘦 𝘪𝘯𝘵𝘰 𝘢 𝘴𝘪𝘯𝘨𝘭𝘦 𝘵𝘦𝘹𝘵: =CONCAT(B3:D5)
| | A |
|:---:|:--------------------------------|
| 1 | OrangePink1AppleRed2LemonGreen3 |