Hi There, I have the following code that I use to split data in column B.
My problem is that when the "split" has taken place - the data isn't aligned to the correct row. For instance the data that should be in B4 - ends up in B3.
The coding is part of a long looping macro. All i want it to do is split the text to columns as in the code but to the correct line
Any help please?
Columns("B:B").Select
Selection.TextToColumns Destination:=Range("B:B"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=True, Tab:=True, _
Semicolon:=False, Comma:=False, Space:=True, Other:=False, FieldInfo _
:=Array(Array(1, 1), Array(2, 1), Array(3, 1)), TrailingMinusNumbers:=True
Bookmarks