Hi,
I want to splits cells (text to columns) with a VBA Macro.
I'm using the following code:
Columns("A:A").Select
Application.CutCopyMode = False
Selection.TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote...