Date Ranges / Report / Displaying Data

  • Thread starter CCHD via AccessMonster.com
  • Start date
C

CCHD via AccessMonster.com

Hi,

I have a report named “rptLocalâ€. This report is made up of approx. 50
queries. How would I go about making it so that the report only displays data
ranging between two dates? I would like make it so that the user would enter
the date ranges into textboxes within a form “frmReportâ€, presses a command
button and poof the report.

Is this possible? And how?

Thanks
 
G

Guest

50 queries in a report? Wow, that's a lot of different information. If you
want each query to be filtered by the date range, you would need to set a
criteria in each query to something like

WHERE [DateField] Between Forms!frmReport!txtStart and Forms!frmReport!txtEnd
 
C

CCHD via AccessMonster.com

Duane,
Would I enter " WHERE [DateField] Between Forms!frmReport!txtStart and Forms!
frmReport!txtEnd " into the criteria of the Date Column for each query?

Thank you for the help.

Duane said:
50 queries in a report? Wow, that's a lot of different information. If you
want each query to be filtered by the date range, you would need to set a
criteria in each query to something like

WHERE [DateField] Between Forms!frmReport!txtStart and Forms!frmReport!txtEnd
[quoted text clipped - 7 lines]
 
C

CCHD via AccessMonster.com

Everything Works Great Thanks
Duane,
Would I enter " WHERE [DateField] Between Forms!frmReport!txtStart and Forms!
frmReport!txtEnd " into the criteria of the Date Column for each query?

Thank you for the help.
50 queries in a report? Wow, that's a lot of different information. If you
want each query to be filtered by the date range, you would need to set a
[quoted text clipped - 7 lines]
 

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