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.
 
Back
Top