Hi All - new here and I've stumped myself!
I had an automation that successfully took values from a list field in a projects table (tbl_Projects), and created separate records linked back to the project in an operations table (tbl_Operations). It was triggered on a button.
Example:
tbl_Projects.ProjectName (Text) tbl_Projects.OperationsOptions field (Multiple Select)
Project 1 Prep, Cut, Print
tbl_Operations.OperationName (Text) tbl_Operations.ProjectLinked (Linked)
Prep Project 1
Cut Project 1
Print Project 1
Problem: when I added/updated the project table list field with additional operations it would create all of them over again in the operations table, plus the new one recently added.
Example:
tbl_Projects.ProjectName (Text) tbl_Projects.OperationsOptions field (Multiple Select)
Project 1 Prep, Cut, Print, Quality Check
tbl_Operations.OperationName tbl_Operations.ProjectLinked
Prep Project 1
Cut Project 1
Print Project 1Prep Project 1Cut Project 1Print Project 1
Quality Check Project 1
Question: How can I maintain the automation but have it check first to see if there's already a project with that operation?