Capturing parameter input

H

Hugh

I have a report based upon a parameter query that requires the input of a
beginning date and an ending date to filter the required records. I want to
capture the input and use it to show the date spread for the recordset in
the report header, is this possible? and if not is there another solution?

Hugh
 
R

Rick Brandt

Hugh said:
I have a report based upon a parameter query that requires the input
of a beginning date and an ending date to filter the required
records. I want to capture the input and use it to show the date
spread for the recordset in the report header, is this possible? and
if not is there another solution?
Hugh

Just use the parameter markers in your report as if they were fields in the
query. The report will pick them up.

EX: ="From " & [Enter Start Date] & " to " & [Enter End Date]
 

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