All Collections
Form, Portal & View Editor settings
Login
How to use the rollup field as a login field?
How to use the rollup field as a login field?

The values I need for login are coming from a rollup field in my table.

Updated over a week ago

If the rollup field derives its data from a text field, the default aggregation formula is ARRAYUNIQUE. Yet, since the result is an array, you need to transform it into a string before it can be employed for login purposes. To achieve this, you should utilize the ARRAYJOIN function. Here's an illustrative aggregation formula for reference.

ARRAYJOIN(ARRAYUNIQUE(values), ", ")
Did this answer your question?