Timing the Report/Queries Load Time

  • Thread starter Thread starter SRC
  • Start date Start date
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
 
dim dteCalled as Date
dteCalled = Now()
DoCmd.OpenReport "ReportName"
Msgbox Now-dteCalled


Chris
 
Back
Top