Printing query parameters

K

Katie B

I want to print the dates I enter in query parameters in
the header section on my report so when I distribute the
report others will know what date range I've printed. Is
this possible to do?
Thank you.
 
S

Steve Schapel

Katie,

Yes. Put the parameters in the design of the report itself, exactly
the same as they are in the query. For example, you might have an
unbound textbox in the report header with a controlsource like this...
="My report for " & Format([Enter Start Date],"mm/dd/yy") & " to " &
Format([Enter Finish Date],"mm/dd/yy")

- Steve Schapel, Microsoft Access MVP
 
K

Katie

Thank you. That works perfectly.
Katie
-----Original Message-----
Katie,

Yes. Put the parameters in the design of the report itself, exactly
the same as they are in the query. For example, you might have an
unbound textbox in the report header with a controlsource like this...
="My report for " & Format([Enter Start Date],"mm/dd/yy") & " to " &
Format([Enter Finish Date],"mm/dd/yy")

- Steve Schapel, Microsoft Access MVP


I want to print the dates I enter in query parameters in
the header section on my report so when I distribute the
report others will know what date range I've printed. Is
this possible to do?
Thank you.

.
 

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