Reports, queries and Parameters...

C

clamfuddle

I am designing a sales report that is based on a query.

Part of the query is the sale date, which the user is
able to enter as a parameter.

How do I capture that parameter value and print in on
each page of the report?

Thanks!

Bryan

(I'm good with tables, and queries, but normally don't ever
have to build forms and reports....)
 
F

fredg

I am designing a sales report that is based on a query.

Part of the query is the sale date, which the user is
able to enter as a parameter.

How do I capture that parameter value and print in on
each page of the report?

Thanks!

Bryan

(I'm good with tables, and queries, but normally don't ever
have to build forms and reports....)

On each page of the report?
Add an unbound control to the page header.
Set it's control source to:
= "For sales on " & [Enter Date]

The text within the brackets must be identical to the query parameter
text within the brackets.
 

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