automaticbaby
Technical User
I've recorded a macro in Excel and even adapted code from an old thread (1033329) but neither has removed the unwanted data.
Here's what I've got:
The column in question holds info similar to this: 50 (E: 50, I: 0).
This shouldn't make a difference, but the file is a CSV file and the top line is a header.
Any suggestions?
Thanks
Here's what I've got:
Code:
With oApp
.Columns.("J:J").Select
.Selection.TextToColumns _
Destination:=.Range("J2"), _
DataType:=xlDelimited, _
TextQualifier:=xlNone, _
ConsecutiveDelimiter:=False, _
Tab:=False, _
Semicolon:=False, _
Comma:=False, _
Space:=False, _
Other:=True, _
OtherChar:="(", _
FieldInfo:=Array(Array(1, 1), Array(2, 9))
End With
This shouldn't make a difference, but the file is a CSV file and the top line is a header.
Any suggestions?
Thanks