Formatting query parameters in a report

C

Chris

Hi,

This question is further to the post "Resusing query
parameters in a report" at 7:25 a.m. today (23rd) and the
response, which, by the way, told me exactly what I needed
to know about that subject!

I have the control source of my unbound text box set to my
parameter and I have the unbound text box formatted to a
long date. It appears that the long date format is being
ignored. The report instead displays the start date
exactly the way the user types it in.

Is there some way to force the report to display the long
date format without forcing the user to enter dates in the
long date format?

Thanks for any and all help!
 
F

Fredg

Something like:

="Between " & Format([Enter Start Date],"Long Date") & " And " &
Format([Enter End Date],"Long Date")

The text within the brackets must, of course, be identical to the query
bracketed criteria text.
 

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

Top