See if this is what you want.
Sub t()
Dim rng As Range, i As Long, cnt As Long
With ActiveSheet
For i = .Cells(Rows.Count, 1).End(xlUp).Row To 2 Step -1
cnt = Application.CountA(.Range(.Cells(i, 2), .Cells(i, Columns.Count).End(xlToLeft)))
If cnt > 1 Then
.Cells(i + 1, 1).Resize(cnt - 1).EntireRow.Insert
.Cells(i, 1).Resize(cnt) = .Cells(i, 1).Value
.Cells(i, 3).Resize(, cnt - 1).Copy
.Cells(i + 1, 2).PasteSpecial xlPasteValues, Transpose:=True
.Cells(i, 3).Resize(, cnt - 1).ClearContents
End If
cnt = 0
Next
End With
End Sub
Bookmarks