Date Range on report

  • Thread starter Thread starter Rey
  • Start date Start date
R

Rey

Hello,

I have a query that asks for a "begining date" and "end date" as
parameters. Is there anyway to poulate these two dates on a report so
that the user knows the time frame (they just keyed) of the report?
I'm trying to summarize results for employees by week.
 
You can refer to the parameters in the report.

You can set the ControlSource property for a text box to something like:

="Reporting between " & [Beginning Date] & " and " & [End Date]
 
You can refer to the parameters in the report.

You can set the ControlSource property for a text box to something like:

="Reporting between " & [Beginning Date] & " and " & [End Date]

--
Doug Steele, Microsoft Access MVPhttp://I.Am/DougSteele
(no e-mails, please!)




I have a query that asks for a "begining date" and "end date" as
parameters. Is there anyway to poulate these two dates on a report so
that the user knows the time frame (they just keyed) of the report?
I'm trying to summarize results for employees by week.- Hide quoted text -

- Show quoted text -

Thanks!
 

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

Back
Top