Timing the Report/Queries Load Time

S

SRC

Is there a way to have the computer to time the length of
time it takes a report to open up into preview after it
has been selected by a form button.

Thanks,
Steven
 
C

Chris

dim dteCalled as Date
dteCalled = Now()
DoCmd.OpenReport "ReportName"
Msgbox Now-dteCalled


Chris
 
Top