Hi,
I'm trying to "match" values from one table in another and if there is a value not in the table it should do something. The loop works but the match function does not work properly.
I can not set Search1 equal to the match function which I would like to do as it makes the code so much easier to read/adjust
and
with sheet9
If IsError(Application.Match(.Cells(n, 3), sheet1.Range("B:B"), 0)) = True Then
Search1 = Application.Match(.Cells(n, 3), sheet1.Range("B:B"), 0)
sheet1.Cells(Search1, 2) = sheet9.Cells(n, 3)
sheet1.Cells(Search1, 3) = sheet9.Cells(n, 5)
sheet1.Cells(Search1, 4) = sheet9.Cells(n, 9)
sheet1.Cells(Search1, 5) = sheet9.Cells(n, 10)
sheet1.Cells(Search1, 6) = sheet9.Cells(n, 13)
Else
lr2 = sheet1.Cells(Rows.Count, 2).End(xlUp).Row + 2
sheet1.Cells(lr2, 2) = sheet9.Cells(n, 3)
sheet1.Cells(lr2, 3) = sheet9.Cells(n, 5)
sheet1.Cells(lr2, 4) = sheet9.Cells(n, 9)
sheet1.Cells(lr2, 5) = sheet9.Cells(n, 10)
sheet1.Cells(lr2, 6) = sheet9.Cells(n, 13)
End If
end with
Bookmarks