Does this help?
I have assumed (for simplicity) that each list contains just 2 columns,
it should be reasonably evident how to expand this to more.
List 1 is in columns A and B List 2 is in columns D and E
In cell G1 type in:
=IF(AND(ISNUMBER(MATCH(A1,D:D,0)),ISNUMBER(MATCH(B1,E:E,0))),"","Deleted")
In cell H1 type in:
=IF(AND(ISNUMBER(MATCH(D1,A:A,0)),ISNUMBER(MATCH(E1,B:B,0))),"","Inserted")
Replicate these 2 cells down.
Basically column G checks each row in the first list to see if it exists in the second list
if it does not then it must have been deleted.
Column H checks each row in the first list to see if it exists in the first list,
if it does not then it must have been inserted.
Mark.
Bookmarks