date/time

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can i separate the date from the time. I only need the date value and not
the time. Is this possible.
 
DateValue([YourField]) will give the date component.

TimeValue([YourField]) will give the time component.
 
You can use
Datevalue(Datetimefieldname) to give you just the date.

Bear in mind that you cannot store a date without a time - a default time of
00:00:00 is assumed.
 
Back
Top