When doing a Query

Vav

Registered User.
Local time
Today, 15:53
Joined
Aug 29, 2002
Messages
36
Hello,

Got a question,

I have a report based off a query. In the query the user is prompted with to questions.

1) Enter the begining date
2) Enter the Ending date


I was wondering if it were posible to display on the report the two parameter that the user was required to fill in.

I think it would make the report much more valuable and complete if the dates were displayed. This would mean that the user would not have to calculate the start and end date by reading through the report.

Does this make sense?

Peter Vavasour
 
Last edited:
put two text boxes on a form and enter the two dates then refer to them on the report.
 
Try putting this in your report, in an unbound box, where you want to view the date range. Hope that is what you want?

=" From " & [beginning date] & " To " & [ending date]
 

Users who are viewing this thread

Back
Top Bottom