N
Nick CWT
I have a report filtered by a query: begin date - end date. How can I
display these dates on report? Thanks.
display these dates on report? Thanks.
Joan Wild said:You can simply repeat the parameters in a textbox on the report. So if you have criteria of
Between [begin date] And [end date]
in your query, put a textbox on your report with the following as the control source:
="For the period " & [begin date] & " to " & [end date]
--
Joan Wild
Microsoft Access MVP
Nick CWT said:I have a report filtered by a query: begin date - end date. How can I
display these dates on report? Thanks.
Nick CWT said:Thanks Joan,
Is there a way to display the range without having to type the parameters in
twice? Thanks again.
Joan Wild said:You can simply repeat the parameters in a textbox on the report. So if you have criteria of
Between [begin date] And [end date]
in your query, put a textbox on your report with the following as the control source:
="For the period " & [begin date] & " to " & [end date]
--
Joan Wild
Microsoft Access MVP
Nick CWT said:I have a report filtered by a query: begin date - end date. How can I
display these dates on report? Thanks.
Thanks Joan,
Is there a way to display the range without having to type the parameters in
twice? Thanks again.
Joan Wild said:You can simply repeat the parameters in a textbox on the report. So if you have criteria of
Between [begin date] And [end date]
in your query, put a textbox on your report with the following as the control source:
="For the period " & [begin date] & " to " & [end date]
--
Joan Wild
Microsoft Access MVP
Nick CWT said:I have a report filtered by a query: begin date - end date. How can I
display these dates on report? Thanks.
Nick CWT said:Thanks Joan,
Is there a way to display the range without having to type the parameters in
twice? Thanks again.
Joan Wild said:You can simply repeat the parameters in a textbox on the report. So if you have criteria of
Between [begin date] And [end date]
in your query, put a textbox on your report with the following as the control source:
="For the period " & [begin date] & " to " & [end date]
--
Joan Wild
Microsoft Access MVP
Nick CWT said:I have a report filtered by a query: begin date - end date. How can I
display these dates on report? Thanks.
fredg said:Thanks Joan,
Is there a way to display the range without having to type the parameters in
twice? Thanks again.
Joan Wild said:You can simply repeat the parameters in a textbox on the report. So if you have criteria of
Between [begin date] And [end date]
in your query, put a textbox on your report with the following as the control source:
="For the period " & [begin date] & " to " & [end date]
--
Joan Wild
Microsoft Access MVP
I have a report filtered by a query: begin date - end date. How can I
display these dates on report? Thanks.
The text within the brackets MUST be identical to the bracketed text
in the query.
Wayne-I-M said:You shouldn't need to. Assuming you have the report based on the query, any
criteria in the query will be passed to the report.
--
Wayne
Manchester, England.
Nick CWT said:Thanks Joan,
Is there a way to display the range without having to type the parameters in
twice? Thanks again.
Joan Wild said:You can simply repeat the parameters in a textbox on the report. So if you have criteria of
Between [begin date] And [end date]
in your query, put a textbox on your report with the following as the control source:
="For the period " & [begin date] & " to " & [end date]
--
Joan Wild
Microsoft Access MVP
I have a report filtered by a query: begin date - end date. How can I
display these dates on report? Thanks.
Nick CWT said:Thanks Joan,
Is there a way to display the range without having to type the parameters in
twice? Thanks again.
Joan Wild said:You can simply repeat the parameters in a textbox on the report. So if you have criteria of
Between [begin date] And [end date]
in your query, put a textbox on your report with the following as the control source:
="For the period " & [begin date] & " to " & [end date]
--
Joan Wild
Microsoft Access MVP
Nick CWT said:I have a report filtered by a query: begin date - end date. How can I
display these dates on report? Thanks.