Print Database Path and Report Name on Report

  • Thread starter Thread starter Scott
  • Start date Start date
S

Scott

How do I print the database path, name and report name on the report?
Example: \\server\share\access\databasename.mdb savedreportname
 
Try this in a text box:
=currentdb.Name & "/" & "Report Name"

Dont know how to find the report name automaticaly though
 
Try this in a text box:
=currentdb.Name & "/" & "Report Name"

Dont know how to find the report name automaticaly though

The Report's Name property will give you the name of the report.

=CurrentDb.Name & " " & [Name]
 
I would try the following expression

CurrentDb().Name & "/" & Me.Name

John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
 
Back
Top