What's your entire code? How are you exporting the data to Excel? Or
are
you exporting data to Excel?
--
Bob Larson
Access World Forums Super Moderator
Utter Access VIP
Tutorials at
http://www.btabdevelopment.com
If my post was helpful to you, please rate the post.
__________________________________
:
Still opening in Excel as..39462
Any other ideas? thank you - Bob
:
How about this:
objXLSheet.Range("I:I").NumberFormat = "m/d/yyyy"
or if you want two digit days
objXLSheet.Range("I:I").NumberFormat = "mm/dd/yyyy"
--
Bob Larson
Access World Forums Super Moderator
Utter Access VIP
Tutorials at
http://www.btabdevelopment.com
If my post was helpful to you, please rate the post.
__________________________________
:
Unable to set the Format on a date..it appears in eXCEL as its date
number.
Code snippet..
objXLSheet.Columns("I:I").NumberFormat = "Short Date"
TIA - Bob