U UGAJohn Jan 21, 2010 #1 I have date and time data in seperate columns and I want to combine them into one datetime field. How do I do this?
I have date and time data in seperate columns and I want to combine them into one datetime field. How do I do this?
G ghetto_banjo Jan 21, 2010 #2 you can do an update query and update a new field to this: Cdate([DateField] & " " & [TimeField])
F fredg Jan 21, 2010 #3 I have date and time data in seperate columns and I want to combine them into one datetime field. How do I do this? Click to expand... These fields are Date/Time datatypes? Just add them together: =[DateField] + [TimeField] #1/5/2010# + #4:55 PM# = #1/5/2010 4:55 PM#
I have date and time data in seperate columns and I want to combine them into one datetime field. How do I do this? Click to expand... These fields are Date/Time datatypes? Just add them together: =[DateField] + [TimeField] #1/5/2010# + #4:55 PM# = #1/5/2010 4:55 PM#