The macro stops at STOP on the part below and refuses to continue. Line 74.
'store keys in array
For i = 1 To 2
For r = 2 To nrRighe(i)
key = ws(i).Cells(r, "a")
If dic(i).exists(key) Then
Stop
Else
dic(i).Add Item:=r, key:=key
End If
Next r
Next i
Could this be because I have some columns in one file set to hidden? Both A columns have the same format so this shouldn't be an issue. But it varies in every other column.
Let me know if you need more information and if I have to strip my files with customer data to make bogus customer information then I will do just that.
One file has 6142 rows including the titles (A1 to BE1) on each column, and the other file has 9646 rows with titles (A1 to BD1) on each column.
Bookmarks