I am trying to iterate over an array and skip the non-numeric values, I have put an if loop inside a for loop with the intention that it should identify non numeric values if so +1 to the iterator, however it is not working, producing no error message as to why
For i = 1 To 780
If Not IsNumeric(Worksheets("sheet").Cells(6 + i, 6)) Then
i = i + 1
End If
Worksheets("one").Cells(6 + i, 6) = Worksheets("one").Cells(6 + i, 6) * Worksheets("two").Cells(3 + i, 6)
Next
I am new to VBA and do not understand why this wouldn't work