Report parametwer value

  • Thread starter Thread starter John
  • Start date Start date
J

John

I have entered the formula below in an unbound text control box in my report
header to capture begin and end date for each report being printed printed .
The formula seems to work but data input boxes now appear twice each for the
begin date and end date, and everything on the report is crammed together.
How do I correct these problems. I am using an older version of Access
(ver. 7.0).
="From " & [Enter Start Date] & " to" & [Enter End Date]
 
Correction - not everything in the report crams together. Only the report
printing of the begin and end date input by the user.
 
John said:
Correction - not everything in the report crams together. Only the
report printing of the begin and end date input by the user.

John said:
I have entered the formula below in an unbound text control box in my
report header to capture begin and end date for each report being
printed printed . The formula seems to work but data input boxes now
appear twice each for the begin date and end date, and everything on
the report is crammed together. How do I correct these problems. I
am using an older version of Access (ver. 7.0).
="From " & [Enter Start Date] & " to" & [Enter End Date]

You are getting the prompt twice for each because the criteria in your query
is not *exactly* the same as in this textbox. The parameters must be
exact - perhaps your query has [Enter Start Date:]

As for running together, the only thing I see is that a space after the 'to'
is needed.

.... & " to " & ...
You can always add more spaces inside the quotes to spread it out more.
 

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