Description
I need assistance with creating a Power Automate flow to sync two SharePoint lists (EmployeeDetails and ContractorDetails) with a third list (CombinedList). The requirement is as follows:
- Lists Involved:
- EmployeeDetails**:** Contains columns Employee ID (unique identifier), Name, Department, and Status.
- ContractorDetails**:** Contains the same columns as EmployeeDetails.
- CombinedList**:** A target list with the same columns (Employee ID, Name, Department, Status).
- Requirement:
- When a new item is created in either EmployeeDetails or ContractorDetails, the item should be added to CombinedList with all column values (Employee ID, Name, Department, Status).
- When an existing item is edited in EmployeeDetails or ContractorDetails, the corresponding item in CombinedList (matched by Employee ID) should be updated with the new values, instead of creating a duplicate entry.
- The flow should be efficient for large lists to avoid server overload.

