Access Reports

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

Guest

I would like to show the parameters (Beginning Date and Ending Date) from a
"Date Received" field on the Report in Access either in the Footer or Header.
Is this possible?
 
Jamie

A typical way to handle this is to use a form to "collect" the parameters.
Your query then refers to the form for the criteria. Your report then
refers to the form for the values to display.
 
I would like to show the parameters (Beginning Date and Ending Date) from a
"Date Received" field on the Report in Access either in the Footer or Header.
Is this possible?

Add an unbound control to the Report Header.
Set it's control source to:

="For sales between " & [Beginning Date] & " and " & [Ending Date]
The text within the brackets must be identical to the bracketed
parameter text in the query.
 
thanks! That helped.

fredg said:
I would like to show the parameters (Beginning Date and Ending Date) from a
"Date Received" field on the Report in Access either in the Footer or Header.
Is this possible?

Add an unbound control to the Report Header.
Set it's control source to:

="For sales between " & [Beginning Date] & " and " & [Ending Date]
The text within the brackets must be identical to the bracketed
parameter 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

Similar Threads


Back
Top