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?
|
|
|
|
|
|
|
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
|
||
|
|
|
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. |
|||
|
|
|
|
I would use the System.Diagnostics.Stopwatch class. Start the stopwatch, call your function, and stop the stopwatch. It will give you very accurate time differences. I'm not sure if you have access to the stopwatch class in VBA, but it's worth a try. |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
