Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In Excel 2002 I have written the following code
Private Sub Test() Dim i As Double For i = 1 To 1.4 Step 0.2 Debug.Print i Next End Sub Producing the following text in the debug window 1 1.2 I would expect 1 1.2 1.4 By changing the code to: Private Sub Test() Dim i As Double For i = 1 To 1.6 Step 0.2 Debug.Print i Next End Sub I get what I would expect: 1 1.2 1.4 1.6 Does anyone know why???? I also get this in Excel 2000 |