Yea that does work but just one problem if the timestamp is 12:00 AM then only the date shows up wtihout the timestamp. You mentioned omitted seconds above but I need the seconds because in my original data I use the seconds.
I tired to just add the :ss part to hh:mm but that didn't seem to work. Thank you
Yes, that's correct - use :ss to extract the seconds.
I don't think the data you gave me included any seconds. I say this because I got the same results (zero seconds) even when I used "ss".
12:00 AM is the default time. Therefore it's possible that the time part will be omitted at that point - I can force it to include the time portion by wrapping the earlier query in an outer FORMAT:
UPDATE TravelSegments SET SegTimeStamp = FORMAT(CDate("11/20/2008" + Space(1) + FORMAT(CDate(SegTimeStamp), "hh:mm AM/PM")), "MM/DD/YYYY hh:mm:ss")
WHERE CDate(SegTimeStamp) < 1
But the problem is that the time functions gravitate toward military time and I'm not sure that's what you want to see. Personally I think it's odd that neither Ms Access nor Sql Server has non-military formatting as a built-in option. I could probably find a way to get it, but it won't be pretty.
Do want to go with military time or standard time?
Secondly, is this choice important for both the form and the table - or just for the form? That is, do you care whether the table shows military or standard? Or do you only care about what shows on the form?