'VBA: How to Convert Text to Columns with Semicolon
Solution 1:[1]
Please See Thee Bellow Mention Code
Sub SplitName()
Dim txt As String
Dim i As Integer
Dim fullname As Variant
txt = ActiveCell.Value
fullname = Split(txt, ";;")
For i = o To UBound(fullname)
Cells(1, i + 1).Value = fullname(i)
End Sub
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Jahanzaib Sehar |



