A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Josh,
For what it is worth: another timing method uses the Windows API.
'At the top of the module ...
Public Declare Function timeGetTime Lib "winmm.dll" () As Long
'Returns the number of milliseconds since midnight
'Then in your sub...
Dim lngStart as Long
Dim lngTotal as Long
lngStart = timeGetTime
'code to do stuff
lngTotal = timeGetTime - lngStart
MsgBox Format$(lngTotal / 1000, "#00.000 Seconds")
'---
Jim Cone
Portland, Oregon USA
https://goo.gl/IUQUN2 (Dropbox)
(free & commercial excel add-ins & workbooks)