ARRAYTOTEXT
converts array to text representation · from excel · excel: verified match · no sheets equivalent
signature
ARRAYTOTEXT(array, [format])
returns: text
| argument | required |
|---|---|
| array | required |
| format | optional |
examples
formula and result, taken from the engine's own test suite — every result below is asserted in CI, not written by hand.
| A | B | C | |
|---|---|---|---|
| 1 | 10 | 2 | alpha |
| 2 | 20 | 4 | beta |
| 3 | 30 | 6 | gamma |
fx
=ARRAYTOTEXT(A1:C3) 10, 2, alpha, 20, 4, beta, 30, 6, gamma related
- ARRAY_CONSTRAIN truncates a range to at most the given rows and columns
- ARRAYFORMULA evaluates an expression across a range (this engine already spills, so it is a pass-through for sheets compatibility)
- BYCOL applies lambda to each column of array
- BYROW applies lambda to each row of array
- CHOOSECOLS returns the specified columns from an array
- CHOOSEROWS returns the specified rows from an array