Prompt ?

T

Ty

I have prompted the user based on a query for start date and end date - works
great !!!!!

How can I put the start date and end date that they entered into the report?

Thanks !!!!!
 
F

fredg

I have prompted the user based on a query for start date and end date - works
great !!!!!

How can I put the start date and end date that they entered into the report?

Thanks !!!!!

In the Report Header, add an unbound control.
Set it's control source to:
= "Some text here " & [Start Date] & " and " & [End date]

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

Ty

Thank you very much !!!!

fredg said:
I have prompted the user based on a query for start date and end date - works
great !!!!!

How can I put the start date and end date that they entered into the report?

Thanks !!!!!

In the Report Header, add an unbound control.
Set it's control source to:
= "Some text here " & [Start Date] & " and " & [End date]

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

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