Hi please, could someone help me out, I have a vba code where i am trying to delete the entries not found in sheet 2 but found in sheet 1. The only problem is they are not of the same order meaning som rows are empty in sheet 1 but basically almost the same data. This is the code i have for this but it says error message 9 "Subscript out of range" or "Index is out of interval"
ElseIf Kontonr = w.Range("A" & LRow & ":C" & LRow).Value <> v.Range("A" & Cell.Row & ":C" & Cell.Row).Value Then
Kontonr.EntireRow.Delete
What can i do to get this running?
ElseIf Kontonr = w.Range("A" & LRow & ":C" & LRow).Value <> v.Range("A" & Cell.Row & ":C" & Cell.Row).Value Then
Kontonr.EntireRow.Delete
What can i do to get this running?
Last edited: