View Single Post
 
Old 10-05-2015, 09:52 AM
randyaserve randyaserve is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Sep 2015
Posts: 3
randyaserve is on a distinguished road
Default

Hi, this seems to work well! I appreciate the help macropod. Cheers mate!

Quote:
Originally Posted by macropod View Post
Try:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim i As Long, j As Long, k As Long
With ThisWorkbook.Worksheets("Sheet1").UsedRange
  For i = .Cells.SpecialCells(xlCellTypeLastCell).Row To 1 Step -1
    If InStr(.Cells(i, 5).Value, "<br>") > 0 Then
      For j = UBound(Split(.Cells(i, 5).Value, "<br>")) To 1 Step -1
        .Cells(i + 1, 5).EntireRow.Insert Shift:=xlShiftDown
        For k = 1 To 4
          .Cells(i + 1, k).Value = .Cells(i, k).Value
        Next
        .Cells(i + 1, 5).Value = Split(.Cells(i, 5).Value, "<br>")(j)
      Next
      .Cells(i, 5).Value = Split(.Cells(i, 5).Value, "<br>")(0)
    End If
  Next
End With
Application.ScreenUpdating = True
End Sub
Reply With Quote