Hi people,
How do I split text from a range in a column (maybe using text to column, separator "x") to a different worksheet and rearrange. To make you understand better here is a image of the source data(Sheet1)
My expected output is something like(Sheet2):
I've done
But it pastes the result in Sheet1 & also I cannot find any option to rearrange the data to my needs.
Please help me!!
How do I split text from a range in a column (maybe using text to column, separator "x") to a different worksheet and rearrange. To make you understand better here is a image of the source data(Sheet1)
My expected output is something like(Sheet2):
I've done
VBA Code:
Sub customSplit()
Dim objRange1 As Range
Set objRange1 = Range("A2:A6")
objRange1.TextToColumns _
Destination:=ActiveWorkbook.Worksheets("Sheet2").Range("F2"), _
DataType:=xlDelimited, _
Tab:=False, _
Semicolon:=False, _
Comma:=False, _
Space:=False, _
Other:=True, _
OtherChar:="x"
End Sub
Please help me!!