I'm not sure what I'm doing wrong. I've tried multiple things and looked at different threads, but i still get the Run-time Error '1004'. I'm just trying to do text to column for range A:A in Sheet "LY".
This is the code I've been using
I've tried changing the range and messing with the other settings as well..
Any help is appreciated
Thanks!!
This is the code I've been using
Code:
Sheets("LY").Select
Selection.TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlSingleQuote, ConsecutiveDelimiter:=False, Tab:=False, _
Semicolon:=False, Comma:=True, Space:=False, Other:=False, FieldInfo _
:=Array(1, 1), TrailingMinusNumbers:=True
I've tried changing the range and messing with the other settings as well..
Any help is appreciated
Thanks!!