Office 2003 and Date Issue

  • Thread starter Thread starter niel
  • Start date Start date
N

niel

A macro has stopped operating correctly when a client updated to Office
2003. Trhough VBA, when copying from one workbook and pasting to another a
UK date is being converted to US format when pasted. Appears to be a bug.
E.g. 10/04/2006 being converted to 04/10/2006. This then reads as 4 October
2006 which is incorrent. The only thing that has changed on the relevant
machine is that Office 2003 has been installed.Any ideas!

Code Equivalent

rngBK1.Copy
rngBK2.Paste

Thanks in advance
 
Before you do too much more work, try formatting rngbk1 in an unambiguous
format--MMMM DD, YYYY (for example).

I'm guessing that the dates are the same, but the formatting isn't.

If that's not the case, you may want to post the actual code--not the code
equivalent.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top