Reputation: 99
I set an automation that when a form is submitted, a new row is added in Google Sheets, including a First Name and a Last Name cell. I have a Contact Name field with this formula: =ArrayFormula(CONCATENATE(C9;" ";D9))
.
When a new row is created, the formula is not applied to the new Contact Name cell. What I found so far is using references that don't work with CONCATENATE
like (C:C; " "; D:D)
, and the ArrayFormula doesn't work either.
What would be the best approach here?
Upvotes: 0
Views: 954