Convert the time using
TimeValue(Format(1815,"##:##"))
Convert the date using
DateValue(Format(20070101 ,"####/##/##"))
Of course, you will need to test for nulls/blanks. You can probably do that
with
IIF (IsDate(Format(20070101 ,"####/##/##")),DateValue(Format(20070101
,"####/##/##")),Null)
IIF(IsDate((Format(1815,"##:##")),TimeValue(Format(1815,"##:##")),Null)

Signature
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
.
>I have linked an XLS file to a dataabse and I need to convert the
>following
[quoted text clipped - 10 lines]
>
> Quinto
quinto - 14 Feb 2008 04:56 GMT
Thanks for your help
Quinto
>Convert the time using
>TimeValue(Format(1815,"##:##"))
[quoted text clipped - 13 lines]
>>
>> Quinto