Displaying query parameters

  • Thread starter Thread starter Jordan
  • Start date Start date
J

Jordan

I have several reports that are based on queries that
have a Between...And... with user inputed date
parameters. Is there any way to capture these user-
inputed values and display them on my reports? Thanks.
 
If your report is based on that query, then you can use them on your report.
Just ad an unbound text field and use them. For example...


= "Report data between " & [EnterStartDate] & " and " & [EnterStopDate]




The [EnterStartDate] and [EnterStopDate] would need to exactly match the
parameter in your query or else the user will be asked multiple times.


Rick B


I have several reports that are based on queries that
have a Between...And... with user inputed date
parameters. Is there any way to capture these user-
inputed values and display them on my reports? Thanks.
 
Back
Top