J
Jared
I have a loop function
For i = 3 To 27
If isempty(i,j) then next i
How do i make i increase by 3?
For i = 3 To 27
If isempty(i,j) then next i
How do i make i increase by 3?
JLatham said:use the Step option of the For statement:
For i = 3 To 27 Step 3
negative numbers are also allowed as
For i = 27 to 3 Step -3