Hello and thank you for looking at my question.
I have the following vlookup VBA code
On Error Resume Next
x = WorksheetFunction.VLookup(tpmWS.Cells(i, j), dataWS.Range("A1:D" & LastRow), 4, False)
If Err.Number = 0 Then tpmWS.Cells(i, j + 14) = x
The issue I am having is that...