Oct 28, 2002 #1 Informatic Programmer Joined Oct 4, 2002 Messages 34 Location DE Hello... How can I see how long a procedure is being run. Can somebody Help me....
Oct 28, 2002 #2 mp9 Programmer Joined Sep 27, 2002 Messages 1,379 Location GB Put these lines at the start of your function Code: Dim datTimestamp As Date datTimestamp = Now() and these at the end Code: Debug.Print ((Now() - datTimeStamp) * 24 * 60 * 60) & " seconds" Then watch your debug window as the procedure runs to see how long it is taking. Is this what you're after? http://www22.brinkster.com/accessory/ Upvote 0 Downvote
Put these lines at the start of your function Code: Dim datTimestamp As Date datTimestamp = Now() and these at the end Code: Debug.Print ((Now() - datTimeStamp) * 24 * 60 * 60) & " seconds" Then watch your debug window as the procedure runs to see how long it is taking. Is this what you're after? http://www22.brinkster.com/accessory/