I have data from two different sources that I need to combine. Some data is duplicated exactly and that’s fine, easy to handle. Some data matches on two points and is different on a third, so in these cases I need to make a decision on which to keep and which to discard. Is there a query I can run to find any two rows that have the same identifier and the same date but a different description, then if one description is A whilst the other is B, to delete the row that has description B?
Share
In this case, I suggest you set up a form and subform. The form can be based on a query:
The addition of “” on both sides prevents mismatches being missed where one side is null.
The subform should be based on Table2 with the ID as the link child and master fields. You can then review both records before deciding on an action.