Date/Time Stamp

  • Thread starter Thread starter Microsoft Help
  • Start date Start date
M

Microsoft Help

I have created a report but need it to have a time stamp when it is printed
so the user knows he/she has the most upto date information.

Anyone have any ideas??

Thanks in advance
 
Add a control to the report (Page Footer, Report Footer, or whereever)
Set the control's source to "=Now()" (no quotes). That will give you a
date and time. You can then use the control's format to control the
display.

OR
Set control's source to
="Printed: " & Format(Now(),"dd/mm/yyyy hh:nn")
 
Back
Top