Not sure to see a difference between the 2 displays but
try next code
Option Explicit
Sub SwapRow()
Const Wd1 As String = "Puppy"
Const Wd2 As String = "Kitten"
Const NbCol As Integer = 4
Dim I As Integer
Dim Temp1, Temp2
For I = 1 To Cells(Rows.Count, 1).End(3).Row - 1
If ((Cells(I, 1) = Wd1) And (Cells(I, 1) = Wd1)) Then
Temp1 = Cells(I, 1).Resize(1, NbCol): Temp2 = Cells(I + 1, 1).Resize(1, NbCol)
Cells(I, 1).Resize(1, NbCol) = Temp2: Cells(I + 1, 1).Resize(1, NbCol) = Temp1
End If
Next
End Sub
Bookmarks