Access: How do I get Report Title and Filename to appear on 1st pa

S

SAS

I would like to automatically get the Report Title and Filename to show on
the 1st page of an Access Report or at the bottom on each page in the footer?

Is there a simple function that I am missing?
 
O

Ofer

Create a text box, unbound, and on the OnOpen Property of the report, in the
code section enter the code

Me.TextFieldName = Me.Name & " - " Me.Caption (if that what you mean by
title)
 
Top