Gasman
Enthusiastic Amateur
- Local time
- Today, 00:39
- Joined
- Sep 21, 2011
- Messages
- 16,675
Try this then
Put this code in a module
Then use Format(yourdate,strcJetDate) in the sql. That will force the dates to mm/dd/yyyy format.
Put this code in a module
Code:
Public Const strcJetDate = "\#mm\/dd\/yyyy\#" 'Needed for dates in queries as Access expects USA format.
Then use Format(yourdate,strcJetDate) in the sql. That will force the dates to mm/dd/yyyy format.