View Single Post
Old 06-Apr-2007, 03:27 AM   #2 (permalink)
Iphone
Fixed Error!
 
Iphone's Avatar

Posts: 4,202
Join Date: Mar 2007
Rep Power: 6 Iphone is on a distinguished road

IM:
Default Re: Convert string to date

First, are you aware that you can link an Excel worksheet or Named Range as a table in Access?
This would save you the import.

Second, the append query could be something like this:

INSERT INTO tblCalendarA
(StartDate,
StartTime,
EndTime)
SELECT
MID(StartDate, 2),
MID(StartTime, 2),
MID(EndTime, 2)
FROM
Iphone is offline   Reply With Quote