Print Database Path and Report Name on Report

S

Scott

How do I print the database path, name and report name on the report?
Example: \\server\share\access\databasename.mdb savedreportname
 
P

paul bennett

Try this in a text box:
=currentdb.Name & "/" & "Report Name"

Dont know how to find the report name automaticaly though
 
F

fredg

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]
 
J

John Spencer MVP

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top