I’m trying to create a base for researching and resolving potential duplicates in another system. This system produces reports on a monthly basis that I’m trying to use as my starting point, ideally without any data cleanup of that file.
So far I have 3 Tables:
- Imports
- Individual Records
- Group Records
My imports file/table has one row per individual record. Each individual record has a field called duplicate group ID. When two individual records have been identified as possible duplicates, they have the same duplicate group ID.
I was trying to do something like:
- when a record in the imports table meets conditions
- linked record field “Group Records” is empty
- Another condition that checks for another automation to run first that corrects a field in the import file.
- find records that have the same duplicate group ID
- create one group record
- create one individual record for each record found that have the same duplicate group id
The problem I’m running into is that the automation is triggered for each individual record, so everything gets created twice.
Does anyone know a way around this?