Including Date Range Parameter in Page Header

A

Anita Taylor

I'm working on a report that prompts users to enter a
beginning and ending date range. I'd like to have those
two input parameters appear in the page header for the
report.

I'd like to end up with a report title that says, "Report
of Activity from [BeginningDate] to [EndingDate]"

I've tried a couple of things, but none seem to work. Any
help would be greatly appreciated!
 
F

fredg

I'm working on a report that prompts users to enter a
beginning and ending date range. I'd like to have those
two input parameters appear in the page header for the
report.

I'd like to end up with a report title that says, "Report
of Activity from [BeginningDate] to [EndingDate]"

I've tried a couple of things, but none seem to work. Any
help would be greatly appreciated!

Add an unbound control to the Report Header.
Set it's control source to:
= "Report of Activity from " & [BeginningDate] & " to " & [EndingDate]

The text within the brackets must be identical to the bracketed text
within the query prompts.
 

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