Hello helpful community,
I have a primary table of People with PersonID as the key. I have 2 secondary tables, Notes and Assignments, where PersonID is a linked field. A user reads the Note, creates an Assignment, then marks the Note complete. I'm trying to create an automation where:
- Once a Note is marked complete,
- Find the Assignment with the corresponding Person, and
- Copy the content from a field in Notes to a field in Assignments.
All goes well, I think, until the 3rd step.
Here is Step 2, it yields the results I expect.
Here is Step 3 where I get the "Invalid input" error message. How do I select the RecordID of the row we're iterating through in the Assignments table?
I'm not sure what to select here:
Added complication: Some people have 2 Assignments, and I'd like to copy the Notes field to both Assignments.
Any help or guidance would be appreciated, thanks!