MS Access 2003 filename in footer

  • Thread starter Thread starter Marie Wallace
  • Start date Start date
M

Marie Wallace

I can't seem to get the correct entry to have a filename appear in the footer
of a report. Can get date and page #'s. Tried to use =[filename] but that
doesn't work and I can't find the answer in help.
 
You can get the file name using a control source of:
=CurrentProject.Name

You can also try:
=CurrentProject.FullName
or
=Currentdb.name
 
Back
Top