Nov 05, 2020 11:24 AM
Is it possible to have an ‘Update Record’ action add to a field instead of overwriting whatever is in there?
IE: We have a request base.
Nov 05, 2020 01:41 PM
In the Update Record action, include the existing value from the record plus the new value.
Nov 05, 2020 02:47 PM
So structure like this?
The above doesn’t always work unfortunately. When a new record comes in with that field empty then it throws an error because the field is empty and then the automation doesn’t run at all. Am I doing this wrong?
Nov 05, 2020 04:34 PM
Hum. That is a problem. I recommend contacting support to explain the issue.
In the meantime, you could have two different automations and some formula fields for the the “when record matches conditions” trigger. The formula field would compare the last updated time of the department field with the last updated time of the collaborator field to determine if an automation needs to run.
Automaton A would trigger when the formula field says an updated is needed and the collaborator field is empty. This update would have only the new collaborator.
Automation B would trigger when the formula field says an update is needed and the collaborator field is not empty. This update would have the new collaborator and the list.
Mar 13, 2023 08:57 PM
Did you find a solution for this? I'm having the same issue
Apr 04, 2023 10:56 AM
I think I found a solution to this, at least one that works for me for updating fields without overwriting:
I have a conditional statement that includes "if {field i want to update} is empty" which will simply update the field with the result of the trigger step only and "if {field I want to update} is NOT empty" it will update the field with what is ALREADY in that field, then the result of the trigger, and that seems to take care of the error code
So something like this:
(note what's already in the field MUST go first, otherwise if the result of the trigger is empty it throws an error code anyway)