Insert Filename into Report

  • Thread starter Thread starter Ripper
  • Start date Start date
R

Ripper

Is there a way to insert the title of the database file into a report?

The front-end of my database is called BigJoe.mdb or whatever and I want to
insert that into the Page header of a report. How?
 
Ripper said:
Is there a way to insert the title of the database file into a report?

The front-end of my database is called BigJoe.mdb or whatever and I want to
insert that into the Page header of a report. How?


Use a text box expression like;]

="Report for database " & CurrentProject.Name
 
Back
Top