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]
 
Top