On the if statement, on the i=2 iteration this code if giving me
Runtime Error 9
I am running this from another workbook. WBK is not open yet.
For reference the sheet has 300,000 rows, so I declared 'i' as a Long instead on Int.
I am trying to see if each value in my table's column can be found in WBK Sheet 1 Column A, and if so to change the value to "Sale Complete".
For i = 2 To CLng(Rows.Count):
If Cells(i, 3) = Application.VLookup(Cells(i, 3).Value2, Workbooks("WBK").Worksheets("Sheet1").Columns(1), 1, False) Then
Cells(i, 3).Value = "Sale Complete"
End If
Next