A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
In the following code, change Range("C2:C100") to the range that you want to split. You can use a variable of type Range, of course.
With Range("C2:C100")
.TextToColumns Destination:=.Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=False, _
Semicolon:=False, Comma:=False, Space:=False, Other:=True, OtherChar:="_", _
FieldInfo:=Array(Array(1, 9), Array(2, 1)), TrailingMinusNumbers:=True
End With