CONCAT
Supported, behaves as documentedCategory: Text · Last tested 2026-07-04
Support matrix
| Engine | Documented | Live-tested | Verdict |
|---|---|---|---|
| Excel | Yes | Not yet | n/a |
| Google Sheets | Yes | Not yet | n/a |
| LibreOffice Calc | No | Yes (24.2.7.2, 2026-07-04) | Supported, behaves as documented |
Executed test cases
LibreOffice Calc 24.2.7.2 (tested 2026-07-04)
| Formula | Description | Result | Expected | Verdict |
|---|---|---|---|---|
| =CONCAT("a","b","c") | Basic literal concatenation | abc | abc | Matched |
| =CONCAT(A1:A3) | CONCAT flattens a range directly (unlike CONCATENATE, which cannot take a range) | xyz | xyz | Matched |
| =CONCAT("val:",5) | Numbers are coerced to text without an explicit TEXT() call | val:5 | val:5 | Matched |
| =CONCAT(A1:B2) | 2-D range is flattened row-major | abcd | abcd | Matched |
Docs & syntax
- Excel: official documentation
- Google Sheets: official documentation