Append time onto short date

mreference

Registered User.
Local time
Today, 11:22
Joined
Oct 4, 2010
Messages
137
I have a totals query that displays the sum of what products we ship each day. A process in the system automatically assigns the date/time to a ShippingDate field when an item is marked as despatched.

The totals query allows users to view what products are shipped between a period specified by the user.

The problem I am getting is that when the user inputs dates into fields [txtStart] and [txtEnd], the query fires up but will not display any records as a start time 00:00:00 and end time 23:59:59 was not input.

I don't want users to have to do this but cannot think of a way around it.

My criteria code in the query for the shipping dates is
Code:
Between [Forms]![Switchboard]![txtStart] And [Forms]![Switchboard]![txtEnd]

Can I append the start / end time onto the code above somehow or is there another method I can utilise that is probably so glaringly obvious I have missed.

Usually a query allows me manipulate a field property sheet but in this case there is nothing obvious to select like format.
 
Code:
Between [Forms]![Switchboard]![txtStart] And DateAdd("s", 86399,[Forms]![Switchboard]![txtEnd])
 

Users who are viewing this thread

Back
Top Bottom