Recalling Query parameter Values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a parameter query which requests start and stop dates to sort data
between these dates. Is there some way to recall this data (these dates) and
then print them onto the corresponding report? I'd like to include the start
and stop dates into the header of this report, what kind of field, along with
format and control source, could accomplish this feat?
 
You really should use controls on forms for parameters however you can use
the exact parameters in a control source in your report like:
="For Dates between " & [Enter Start Date] & " and " & [Enter End Date]
 
Thank You, Sir!

Duane Hookom said:
You really should use controls on forms for parameters however you can use
the exact parameters in a control source in your report like:
="For Dates between " & [Enter Start Date] & " and " & [Enter End Date]


--
Duane Hookom
MS Access MVP

Stan_B said:
I have a parameter query which requests start and stop dates to sort data
between these dates. Is there some way to recall this data (these dates)
and
then print them onto the corresponding report? I'd like to include the
start
and stop dates into the header of this report, what kind of field, along
with
format and control source, could accomplish this feat?
 
Back
Top