I keep getting this error when I try to do InStr
for some strange reason... I have done this before and it has worked the other times, but for some reason I am unable to get this to work... Done the run-through and I know it is the InStr
function that is giving me an issue
For x = 0 To 3466 Step 1
For y = 0 To 6391 Step 1
If InStr(Sheet1.Cells(x, 1).Value, Sheet2.Cells(y, 1).Value) <> 0 Then
Sheet3.Cells(i, 1).FormulaR1C1 = Sheet1.Cells(x, 5).Value
i = i + 1
End If
Next y
Next x
Any help is appreciated. I even tried getting the values separately but that didn't work either.