B
Bob Phillips
Yeah I agree, it does seem that, which is quite good . One could argue all
night how fine a code timer needs to go, but one thing I think we all agree
on is that the help should state its resolution.
--
__________________________________
HTH
Bob
night how fine a code timer needs to go, but one thing I think we all agree
on is that the help should state its resolution.
--
__________________________________
HTH
Bob
Bernie Deitrick said:Bob,
It looks like 1/64 of a second is the resolution of Timer:
Sub ShowValues3()
Dim j As Integer
Range("A1:A1000").NumberFormat = "0.000000"
For j = 1 To 1000
Cells(j, 1).Value = Timer
Next j
With Range("B2:B1000")
.FormulaR1C1 = "=RC[-1]-R[-1]C[-1]"
.NumberFormat = "# ???/???"
End With
End Sub
HTH,
Bernie
MS Excel MVP
Bob Phillips said:Wat do you get if you run this?
Dim nTime As Double
Dim i As Long
nTime = Timer
For i = 1 To 1000000
Next i
MsgBox Timer - nTime
--
__________________________________
HTH
Bob