Passing parameter values to the report

I

Ian Tranter

I have a report that shows different categories.
On running the report the user is asked for date ranges
i.e. start of week & end of week. After report has run
all categories are shown with the number of times each
has been used. How do I pass the parameter values to two
text box controls for start & end of week contained in
the Report Header?
 
F

Fredg

Ian,
If the query parameters is written as:

Between [Enter Start] and [Enter End]

then, add an unbound control to the Report Header.
Set it's Control source to:

="For sales between " & [Enter Start] & " and " & [Enter End]

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

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