D
Dave
I'm trying to figure out how long my macro is taking to run, and I want it as
accurate as possible... it would be great if I could get it down to
millisecond precision, is this possible?
Something like:
function test()
startTime = Now()
....
(function code)
....
endTime = Now()
timeTaken = endTime - startTime
test = timeTaken
end function
accurate as possible... it would be great if I could get it down to
millisecond precision, is this possible?
Something like:
function test()
startTime = Now()
....
(function code)
....
endTime = Now()
timeTaken = endTime - startTime
test = timeTaken
end function