René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

for to step [VBA]

option explicit

' Control structures: http://support.microsoft.com/kb/141762
public sub for_to_step()

  dim i as long

  for i = 10 to 22 step 3
    msgBox(i) ' 10, 13, 16, 19, 22
  next

end sub
See also other VBA stuff