Is there code in VBA I can wrap a function with that will let me know the time it took to run, so that I can compare the different running times of functions?
|
feedback
|
|
Unless your functions are very slow, you're going to need a very high-resolution timer. The most accurate one I know is QueryPerformanceCounter. Google it for more info. Try pushing the following into a class, call it CTimer say, then you can make an instance somewhere global and just call .StartCounter and .TimeElapsed
| |||||
feedback
|
|
For VBA, I believe most people go with the simplest solution:
The DateDiff lets you know how many seconds something took. If you need more accuracy than seconds, you'll need a more advanced solution, which according to The Scripting Guy may not exist. | ||||
|
feedback
|
|
We've used a solution based on timeGetTime in winmm.dll for millisecond accuracy for many years. See http://www.aboutvb.de/kom/artikel/komstopwatch.htm The article is in German, but the code in the download (a VBA class wrapping the dll function call) is simple enough to use and understand without being able to read the article. | |||
|
feedback
|
|
If you are trying to return the time like a stopwatch you could use the following API which returns the time in milliseconds since system startup:
after http://www.pcreview.co.uk/forums/grab-time-milliseconds-included-vba-t994765.html (as timeGetTime in winmm.dll was not working for me and QueryPerformanceCounter was to complicated for the task needed) | |||
|
feedback
|
|
The Timer function in VBA gives you the number of seconds elapsed since midnight, to 1/100 of a second.
If you need greater resolution, I would simply run the function 1,000 times and divide the total time by 1,000. | |||||
feedback
|