I have two tables that share a linked field. Example data:
Table 1:
FRUIT | STATUS (single dropdown) | REVIEWS (linked) |
Apples | Incomplete | [1] [2] [3] [4] |
Oranges | Incomplete | |
Bananas | Incomplete | |
Avocados | Incomplete |
Table 2:
REVIEW | DATE | FRUIT (linked) | OUTCOME |
1 | 1-Jul | Apples | Fail |
2 | 2-Jul | Oranges | Fail |
3 | 3-Jul | Apples | Fail |
4 | 4-Jul | Apples | Pass |
The data in Table 2 is created using form.
I'm trying to update the STATUS field in Table 1 to "Complete" when a form is submitted with a passing outcome for a FRUIT. So in this case, the STATUS for the "Apples" record should have been updated to "Complete" on 4-Jul.
I've been trying this using an automation with the following settings:
Trigger: When a record is created. Table 2 is selected.
Conditional Logic group == If OUTCOME is "Pass". Within that logic group, I have an Update Record action item. Table = Table 1, Record ID = REVIEWS (the linked record), Fields = STATUS > Complete.
The trigger is able to find a record and the conditional logic is able to pass the test, but it gets caught up on the action item. I get the "Received invalid inputs" error every time.