I've been there.. The reason why Airtable is adding such "" is given that probably the value being looked up might contain a coma ( , ) or similar. As arrays themselves are comma separated values, to highlight the fact that one of the values contains a comma but should still be treated as a whole value within the array, Airtable will contain the full value (comma included) within the quotations.
To get rid of such quotations, you'll want to use the Substitute() formula.
To understand how this works, you gan first give this formula a try, referencing your primary field:
SUBSTITUTE(
{Animation},
'"',
""
)
You might then also want to include the substitute formula together with your concatenation!
I've been there.. The reason why Airtable is adding such "" is given that probably the value being looked up might contain a coma ( , ) or similar. As arrays themselves are comma separated values, to highlight the fact that one of the values contains a comma but should still be treated as a whole value within the array, Airtable will contain the full value (comma included) within the quotations.
To get rid of such quotations, you'll want to use the Substitute() formula.
To understand how this works, you gan first give this formula a try, referencing your primary field:
SUBSTITUTE(
{Animation},
'"',
""
)
You might then also want to include the substitute formula together with your concatenation!
I've been there.. The reason why Airtable is adding such "" is given that probably the value being looked up might contain a coma ( , ) or similar. As arrays themselves are comma separated values, to highlight the fact that one of the values contains a comma but should still be treated as a whole value within the array, Airtable will contain the full value (comma included) within the quotations.
To get rid of such quotations, you'll want to use the Substitute() formula.
To understand how this works, you gan first give this formula a try, referencing your primary field:
SUBSTITUTE(
{Animation},
'"',
""
)
You might then also want to include the substitute formula together with your concatenation!