I need to actually trim down the field...I tried the formatting approach, but
it was affecting some of my queries based on date range selection. I
converted the field to text as I assumed that would be the easist format to
trim off the portion that I don't want.
Thank you for your quick response, but I'm still in need of parsing that
data out
KARL DEWEY said:
You try and do that you will get "8/18/2008 12:00:00 AM" in a DateTime field.
Use formatting to display it like this --
My_Date: Format([YourDateField], "m/d/yyyy")
--
KARL DEWEY
Build a little - Test a little
:
I have a date field populated with "8/18/2008 1:10:32 PM"
my goal is to update the table field so that just the "8/18/2008" is retained.