Date in the name of the report

  • Thread starter Thread starter Guest
  • Start date Start date
HI

Is there any way to show the today's date in the name of the report?

Thanks,

Dan

You just wish to show the name and date?

Add an unbound control to the report header.
Set it's Control source to:
= Name & " " & format(Date(),"mmm d, yyyy")

Change the formatting of the date to whatever format you wish.
 
Back
Top