Hi,
I’m using a Rollup column with the formula ARRAYUNIQUE(value) pulling records from a Categories table.
I want to be able to add an extra value to this rollup manually.
How can I add another value to this array?
For example, the ARRAYUNIQUE(value) is returning:
value1, value2, value3
I want to change the formula so it returns::
value1, value2, value3, custom_value
I’ve already tried the following without success:
ARRAYUNIQUE(value) & "custom_value"
ARRAYUNIQUE(value & "custom_value")
Both options return => value1value2value3custom_value
(it removes the comma separator)
Any insights?