AlexanderBB
Well-known Member
- Joined
- Jul 1, 2009
- Messages
- 2,072
- Office Version
- 2019
- 2010
- Platform
- Windows
I'm connecting to Excel 2003 from Access 2007 to populate a worksheet created by a 3rd party program.
From Access I send
This should result in dd mmm yyyy but Excel shows this as dd-mmm-yy I guess adhering to a preset date format.
Can I sort this somehow ? Thanks
From Access I send
Code:
xlSh.Cells(iRow, 11).Value = Day(Now) & " " & MonthName(Month(Now), True) & " " & Year(Now)
This should result in dd mmm yyyy but Excel shows this as dd-mmm-yy I guess adhering to a preset date format.
Can I sort this somehow ? Thanks
Last edited: