What would be the syntx for the variable, dtFileDate to contain only the
date (not the time) from the FileDateTime function? For example put
1/21/2006 in the variable dtFileDate when FileDateTime is 1/21/2006
11:57:16 AM?
In other words, from:
dtFileDate = FileDateTime("C:\USR\MIKE\AT0158.MB")
I need dtFileDate to contain only the date 1/21/2006 (not the time
11:57:16 AM, too).
Thanks so very much. mikeburg

Signature
mikeburg
Bob Phillips - 21 Jan 2006 19:50 GMT
dtFileDate = Int(FileDateTime("C:\USR\MIKE\AT0158.MB"))
--
HTH
Bob Phillips
(remove nothere from the email address if mailing direct)
> What would be the syntx for the variable, dtFileDate to contain only the
> date (not the time) from the FileDateTime function? For example put
[quoted text clipped - 14 lines]
> mikeburg's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=24581
> View this thread: http://www.excelforum.com/showthread.php?threadid=503681
Gary Keramidas - 21 Jan 2006 20:54 GMT
i've always just used format
Format(FileDateTime("C:\USR\MIKE\AT0158.MB"), "mm/dd/yy")

Signature
Gary
> What would be the syntx for the variable, dtFileDate to contain only the
> date (not the time) from the FileDateTime function? For example put
[quoted text clipped - 8 lines]
>
> Thanks so very much. mikeburg
mikeburg - 22 Jan 2006 06:10 GMT
Thanks again, guys. If it were not for y'all, people like me would
probably give up trying to learn VBA. mikeburg

Signature
mikeburg