I have inventory that is permanent and gets checked in and out. I have created a form that includes the status change, the inventory ID, and the name of the person who checked it out. We often check out 10+ items at one time, making them all part of 1 transaction.
The form form has a multiple select option for choosing every item they are checking out. The form data goes to a transactions table that is linked to a parent table that shows UTD inventory of all of our items at any given time.
Essentially, the process would be:
form submission → record created in transaction table → update status of selected items in the parent table
Here is the current automation I’ve been trying to work with, where it will run successfully:
And how it is running unsuccessfully:
I’m aware that the issue directly comes from AT not reading both Record IDs to update.
I do not have access to apps, only to scripts. Please help!