Display current date

  • Thread starter Thread starter Monte Grant
  • Start date Start date
M

Monte Grant

"Now ()" is inserted in when a report is made with the wizard. It displays
"Monday, August 25th"

I would like to display the current date (the report is run on) in the
regular format mm/dd/yy. How can I do this?
 
Monte Grant said:
"Now ()" is inserted in when a report is made with the wizard. It displays
"Monday, August 25th"

I would like to display the current date (the report is run on) in the
regular format mm/dd/yy. How can I do this?

Change the format property of the control to "mm/dd/yy".
 
Add that date field to the report.
Set the Control's Format property to:
mm/dd/yy

You might want to think about show the year as 4 digits instead of 2:
mm/dd/yyyy
 
Back
Top