Date field?

aronw

Registered User.
Local time
Today, 09:42
Joined
Dec 2, 2002
Messages
31
Does anyone know how to insert a date field into an already existing report (todays date).

This maybe a very simple question but it has vexed me! :o

TIA

Aron
 
Just add a new textbox and put this in as the control source. Then choose the date format you want.

=Now()

HTH.
 
Now() will give date and time. If you just want date, you need Date().
 
Sorry to put this here but I could not find the ("new Post") button.
I have a big problem. I have a database that keeps track of students progress. When a student has finished a subject they get a certificate. This is printed automaticlly. However I can not find out how to make the print operation change the record in the table Issued. The Issued record is a check box, Yes/no. The report is an basic query. If the student has passed and the Issued table is false then display the record. The report reads the query and displays the details to be printed.

I than have to manual go back and click that the student has been Issued a certificate. How do I get the report to change the value to true when the report has priinted the certificates.

Plese help this one a big one..
Thanx Gizard:D
 
Yeah, Ally is right, use =Date(). But if you use =Now() and set the format to say, Long Date it does only show the date and not time. It works, but is it better to just have =Date()? I presume so, but what difference does it make?...
 
On a report =Now() will make no difference, using Now() as the default value for a textbox can have unpedictable results when using Between Date1 And etc. to return records in a query. Unless you actually need to store the time =Date() is OK, providing you don't have missing references of course
 
GPLT...

The Post New Topic button is at the bottom of every thread, just like this one. It's right next to the Post Reply button that you presumably used to post here.

To address your question, however, look into Update Queries. That will allow you to change the record when you print it.

David R
 

Users who are viewing this thread

Back
Top Bottom