Including Date

J

Jake

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?
 
R

Rick B

Add an unbound text box an put the following in it...


=Date()


Or...

=Format(Date(),"long date")
 
A

Allen Browne

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