I have 130 odd columns of data. two hold dates and two need not be imported. when I try to specify only the changes to these four columns i do not get the results i want. I have tried playing around with it but can get nothing else to work than listing each field. so, i broke it down and tried skipping the first column i don't want (column 7) and it gets rid of column 5.
my first two fields are numeric and then the rest have text qualifiers (double quotes).
any ideas folks?
Code:
With ActiveWorkbook.Sheets(1)
Columns("A:A").TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=True, Space:=False, Other:=False, FieldInfo _
:=Array(Array(7, 9))
my first two fields are numeric and then the rest have text qualifiers (double quotes).
any ideas folks?