Print the start date and end date on the report

S

Scott

I have a report based on a parameter query that asking for a start date and
a end date. I would like to print two dates on the title of the report.
Can someone advise how to accomplish it.

Thanks,

Scott
 
F

fredg

I have a report based on a parameter query that asking for a start date and
a end date. I would like to print two dates on the title of the report.
Can someone advise how to accomplish it.

Thanks,

Scott

Add an unbound text control to the Report header.
Set it's control source to:
="For sales between " & [Enter Start Date] & " and " & [Enter End
Date]

The text with the brackets must be identical to the bracketed text in
the query criteria.
 
S

Scott

Fredg,

Many thanks! It works correctly.

Scott

fredg said:
I have a report based on a parameter query that asking for a start date
and
a end date. I would like to print two dates on the title of the report.
Can someone advise how to accomplish it.

Thanks,

Scott

Add an unbound text control to the Report header.
Set it's control source to:
="For sales between " & [Enter Start Date] & " and " & [Enter End
Date]

The text with the brackets must be identical to the bracketed text in
the query criteria.
 

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