Displaying a date range on a report

G

Grace

Hello, I have a report [HelpDeskRpt] that is based off a
query [HelpDeskQry]. Each record contained in the report
is dated in a field [CallLogged]. I have a form
[HelpDeskRptForm]that contains 2 unbound boxes that
prompts for a [ReportStartDate] and a [ReportEndDate].

The field [CalledLogged] on the query contains the
following criteria [Forms]![HelpDeskRptForm]!
[ReportStartDate] and [Forms]![HelpDeskRptForm]!
[ReportEndDate].

This all works GREAT! However, I would like to display
the [ReportStartDate] and [ReportEndDate] on the report
and don't know how to do this.

Any help is greatly appreciated.
Grace
 
D

Duane Hookom

Add a text box with a control source of
="Dates between " & [Forms]![HelpDeskRptForm]![ReportStartDate] & " and " &
[Forms]![HelpDeskRptForm]![ReportEndDate]
 
G

Guest

Thansk! That worked. Your help is appreciated.

Grace
-----Original Message-----
Add a text box with a control source of
="Dates between " & [Forms]![HelpDeskRptForm]! [ReportStartDate] & " and " &
[Forms]![HelpDeskRptForm]![ReportEndDate]
--
Duane Hookom
MS Access MVP


Hello, I have a report [HelpDeskRpt] that is based off a
query [HelpDeskQry]. Each record contained in the report
is dated in a field [CallLogged]. I have a form
[HelpDeskRptForm]that contains 2 unbound boxes that
prompts for a [ReportStartDate] and a [ReportEndDate].

The field [CalledLogged] on the query contains the
following criteria [Forms]![HelpDeskRptForm]!
[ReportStartDate] and [Forms]![HelpDeskRptForm]!
[ReportEndDate].

This all works GREAT! However, I would like to display
the [ReportStartDate] and [ReportEndDate] on the report
and don't know how to do this.

Any help is greatly appreciated.
Grace


.
 

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