Including Date

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to include the current date in a report in a database I'm
writing. How do I co about it so that a text box automatically has the date
printed in it?
 
Add an unbound text box an put the following in it...


=Date()


Or...

=Format(Date(),"long date")
 
Set the ControlSource of the text box to:
=Date()
and set its Format property to Short Date or Long Date.
 
Back
Top