For some reason the if statement in the code below isn't picking up when it should. I can see that on step 69 it should pick up but it's not seeing 3 = 3 as true. I think it's something to do with the Data array.
Code:
Sub XYZ()
Dim i As Long
Dim Speed as double
Data = Sheets("Data").Range("A1:WK609")
For i = 130 To 130
Speed = 0
For j = 1 To 609
If j >9 then
Speed = Speed + .05
end if
If Data(1, j) = Speed Then
Stop
End If
Next j
Next i
End Sub