Hi Skiman,
You'll have to manually change the following lines of code to reflect which column(s) you need to manipulate:
Firstly, change the following A:A (bolded) to automatically execute the code whenever a change is made in a particualr column(s). For example, if you change this to "A:F" then any change made in these columns will start the code.
If Not Intersect(Target, Range("A:A")) Is Nothing Then
Next, change the following A1:A (bolded) to indicate what range the matching item from Sheet1 is to be deleted from.
For Each cell In Sheets("Sheet1").Range("A1:A" & lngLastRow)
Lastly, you may or may not have to change the A (bolded) in following depending if Column A is a reliable representation of the last cell in Sheet1:
lngLastRow = Sheets("Sheet1").Range("A65536").End(xlUp).Row
HTH
Robert
Bookmarks