Report Design

  • Thread starter Thread starter rob
  • Start date Start date
R

rob

I am creating a report, when it opens, asks you for your
search criteria eg. dates, then when the report is
generated it displays the search criteria you entered in
initially at the top of your report.
I would like to know the procedure for displaying that
search parameter at the top of the report.

Thank you
 
It sounds a bit like you have already done what you are asking for...

How are you getting the search criteria? Is this a parameter prompt of
controls on a form?
 
well the first is what i would have done but i am aving
problems with the last part, it is a parameter input that
i would like displayed at the top of the report, now, how
do i accomplish this?
 
rob said:
I am creating a report, when it opens, asks you for your
search criteria eg. dates, then when the report is
generated it displays the search criteria you entered in
initially at the top of your report.
I would like to know the procedure for displaying that
search parameter at the top of the report.


Just use the query parameter's prompt string as if it were a
field in the query. E.g.
="Sales from " & [Start Date] & " to " & [End Date]
 
Thank You
-----Original Message-----
rob said:
I am creating a report, when it opens, asks you for your
search criteria eg. dates, then when the report is
generated it displays the search criteria you entered in
initially at the top of your report.
I would like to know the procedure for displaying that
search parameter at the top of the report.


Just use the query parameter's prompt string as if it were a
field in the query. E.g.
="Sales from " & [Start Date] & " to " & [End Date]
 
Back
Top