It's probably because of an extra space. Try replacing:
{Client Commercial Controls}
With:
SUBSTITUTE(
{Client Commercial Controls},
", ",
","
)
If you want forms with more features and easier prefill options, you might look at our On2Air Forms app for Airtable. We have a Free version and upgraded versions - https://on2air.com/forms
It's probably because of an extra space. Try replacing:
{Client Commercial Controls}
With:
SUBSTITUTE(
{Client Commercial Controls},
", ",
","
)
Hi Adam @TheTimeSavingCo ,
No luck yet unfortunately. I created a new column with your formula above:


But when I update the pre-filled form formula, only the first linked value appears rather than both.

Any ideas?
Thanks,
Nik
Hi Adam @TheTimeSavingCo ,
No luck yet unfortunately. I created a new column with your formula above:


But when I update the pre-filled form formula, only the first linked value appears rather than both.

Any ideas?
Thanks,
Nik
Looks like the records you're linking to have commas in the primary field, causing the formula field to wrap them with quotes. You could try getting rid of the quotes with a substitute, but if I were you I'd just use the record IDs instead.
To do that, add a formula field in your "Client Commercial Controls" table with the formula "record_id()", and then in your original table add a rollup field on the "Client Commercial Controls" field to grab all the record IDs of the linked records, then use that in your formula
Here's an example
Looks like the records you're linking to have commas in the primary field, causing the formula field to wrap them with quotes. You could try getting rid of the quotes with a substitute, but if I were you I'd just use the record IDs instead.
To do that, add a formula field in your "Client Commercial Controls" table with the formula "record_id()", and then in your original table add a rollup field on the "Client Commercial Controls" field to grab all the record IDs of the linked records, then use that in your formula
Here's an example
Thanks Adam @TheTimeSavingCo that's worked a treat!