Jul 18, 2023 07:05 AM
Hey all,
I am stumped and looking for some help. Here's the situation; I have linked record called subgroups (a string with an integer i.e. Pacific 6) that will be occasionally updated when the person is moved to a new subgroup. I want to keep a running record of each group a person has ever been in, so if they are in subgroup X, then moved to subgroup Y, then moved to subgroup Z, the record keeping cell would now contain "subgroup X, subgroup Y, subgroup Z" but I cannot figure out how to append the new information each time a record is updated instead of replacing or concatenating with just one other record. My automations keep failing but I am really green with automations so I'm not sure if it's even being built correctly.
So far, I've tried the following:
Any advice or suggestions on how to achieve an appended list of subgroups as they are updated?
Thanks in advance to anyone who takes the time to read this and help out!
Solved! Go to Solution.
Jul 18, 2023 08:26 PM
I've set something up here for you to check out:
And the automation looks like this:
You should be able to view the automation set up fully after duplicating the base too
Jul 18, 2023 07:58 AM
Hi @ajatyourservice,
I recommend you first to add a "last modified date" field specific to "subgroups".
Then add a formula field to concatenate the subgroup and last modified date.
Finally add a long text field which we will call "history".
Now you can set up your automation :
as trigger you can use when subgroup record is updated.
as action, update record, for the record id select the same airtable record ID and for the field select the history field. Finally, select the history field and the concatenate formula field as the update.
hope it makes sense and helps you.
Jul 18, 2023 08:26 PM
I've set something up here for you to check out:
And the automation looks like this:
You should be able to view the automation set up fully after duplicating the base too
Jul 20, 2023 08:55 AM
This is awesome, thanks so much Adam!