View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default for loop with step increment of 0.1

Sub test()
For i = 1.5 To 2.01 Step 0.1
Debug.Print i
Next i
End Sub


--
Gary''s Student - gsnu2007h