From: UGAJohn on
I have date and time data in seperate columns and I want to combine them into
one datetime field. How do I do this?


From: ghetto_banjo on
you can do an update query and update a new field to this:

Cdate([DateField] & " " & [TimeField])

From: fredg on
On Thu, 21 Jan 2010 08:16:02 -0800, UGAJohn wrote:

> I have date and time data in seperate columns and I want to combine them into
> one datetime field. How do I do this?

These fields are Date/Time datatypes?
Just add them together:
=[DateField] + [TimeField]
#1/5/2010# + #4:55 PM# = #1/5/2010 4:55 PM#

--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail