In one of my first projects, I have a table with a multiselect field "names".
Can I add a new column with some formula that shows the name that was last added or removed in the "names"-field ? (with automatic update for every change in that names-field)
Hey
I believe this is what you are looking for. Right?

TRIM(
REGEX_EXTRACT(
ARRAYJOIN({Names}, ", "),
" ^,]+$"
)
)
Please make sure that your names do not include “,” (commas) within them as that would cause an issue!
Mike, Consultant @ Automatic Nation
Does this look right? If so, I think you’ll need a script action (a paid feature, I’m afraid) and I’ve set it up here for you to check out

.
(*) if necessary, it may be split in 2 new fields, one with your suggested formula for the latest ADDED item and second field with another formula for the latest DELETED item.
Thanks both for helping !!
Sure
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.