Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I refer to other posts on the same topic
Subject: importing a text file - problem with dates "Americanising" 2/21/2006 9:47 AM PST Subject: opening text file in excel problem 2/10/2006 6:42 AM PST Neither of the above seem to be actually answered satisfactorily. My issue is the same When I open a text file with a .csv or .txt extension in Excel 2003 - date data appears correctly as expected. However when I do it via simple macro - the american date format is invoked and I get incorrect dates e.g source data in .txt or .csv file Field 1,Date,Field 3,Field 4 text,10/03/2006 08:04,text,text '( 10 March 2006) Either of the following macros has the same result Sub Test() Workbooks.Open Filename:="test2.csv" End Sub Sub TestTxt() Workbooks.OpenText Filename:="Test2.txt", _ Origin:=xlMSDOS, StartRow:=1, DataType:=xlDelimited, TextQualifier:= _ xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=False, Semicolon:=False _ , Comma:=True, Space:=False, Other:=False, FieldInfo:=Array(Array(1, 1), _ Array(2, 4), Array(3, 1), Array(4, 1)), TrailingMinusNumbers:=True Range("B2").Select End Sub The date now appears as follows Field 1 Date Field 3 Field 4 text 03/10/2006 08:04 text text I did not have this problem with Excel 2000. Any explanations or automated workarounds would be appreciated -- P Roberts |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to reset incorrect date format after reinstalation of Window X | Setting up and Configuration of Excel | |||
Date Format incorrect | Excel Discussion (Misc queries) | |||
incorrect Format Date mm/yyyy in excel 2003 | Excel Programming | |||
day/month/year in incorrect format for date format | Excel Worksheet Functions | |||
Incorrect date format | Excel Programming |