Change the criteria in your query so that it asks for less than the next
day.
Examples:
If your criteria currently reads:
[What Recd Date]
change it to:
>= [What Recd Date] AND < ([What Recd Date] + 1)
If you currently have:
Between [StartDate] And [EndDate]
change it to:
>= [StartDate] AND < ([EndDate] + 1)

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> In my parameter query I have a field called "Rec'd Date" that shows date
> and time for example - 2/28/2006 11:20:28 AM or 2/28/2006 my problem is
[quoted text clipped - 3 lines]
> mm/dd/yyyy, but I want the time as well. How do I get all of 2/28/20006
> data? Any help will be appreciated. Thank you in advance.