Hi Jet
It's preferred to attach a sample of the desired results
Generally try this code (suppose your headers in row 1 and the target column is C)
Sub SplitIt()
Dim Cell As Range, Arr, I As Long, J As Long
For I = Cells(Rows.Count, 3).End(xlUp).Row To 2 Step -1
If InStr(Cells(I, 3).Value, ",") > 0 Then
Arr = Split(Trim(Cells(I, 3).Value), ",")
For J = 0 To UBound(Arr)
If J <> 0 Then Cells(I, 3).Offset(1, 0).EntireRow.Insert Shift:=xlDown
Arr(J) = Trim(Arr(J))
Next J
Cells(I, 3).Resize(UBound(Arr) + 1) = Application.Transpose(Arr)
End If
Next I
End Sub
Bookmarks