I am not sure what you want to do with this code.
If you want to check a condition (for example, i = 1) and do something if the condition is met, then it is:
For i = 0 To 10
If i = 1 Then
'doWhatever
End If
i = i + 1
Next
Is this what you want? For goodness sakes, don't for get to iterate your counter.
mmcdonal
|