values
is a pure array, the formula you wrote needs to handle strings. So replace all instances of values
with ARRAYJOIN(values)
values
is a pure array, the formula you wrote needs to handle strings. So replace all instances of values
with ARRAYJOIN(values)
Thanks for the reply @Kamille_Parks
I thought the field {All IDs}
being an ARRAYJOIN
already would then be put into the Number of IDs
rollup as the long text result of the ARRAYJOIN
?
Thanks for the reply @Kamille_Parks
I thought the field {All IDs}
being an ARRAYJOIN
already would then be put into the Number of IDs
rollup as the long text result of the ARRAYJOIN
?
You’re doing a rollup of a rollup. So you’re still dealing with an array of strings, even though every record is linked to just one record its still an array.
You’re doing a rollup of a rollup. So you’re still dealing with an array of strings, even though every record is linked to just one record its still an array.
Thank you for the explanation and this worked great!
I needed a similar setup and this worked for me. Having a rollup detect when an email is used multiple times as a way to track a duplicate person entry.