The ARRAYTOCSV function converts your array data into comma separated values in the form of String.
Syntax
ARRAYTOCSV(ArrayValue)
Where,
- ArrayValue is an array input.
EXAMPLE:
ARRAYTOCSV(array[“a”,“b”,“c”] )
Will result into: a,b,c
The function Returns comma-separated values as String.
To know more about how to use the ARRAYTCSV function refer to this article here.