Prompt ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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 !!!!!
 
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.
 
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.
 
Back
Top