utilizing Between Dates of query criteria in title of report

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

Guest

I want to be able to utilize the information typed in beginning and ending
dates being asked for in the query criteria also in a title on a report. this
would give me a check on the dates that I put in and would alleviate me
having to put the dates in twice. (More chance for error)
 
I want to be able to utilize the information typed in beginning and ending
dates being asked for in the query criteria also in a title on a report. this
would give me a check on the dates that I put in and would alleviate me
having to put the dates in twice. (More chance for error)

In an unbound control in the Report's header:
="For sales between " & [StartDate] & " and " & [EndDate]

The text within the brackets must be identical to the query text
within the brackets.
 

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

Back
Top