Here is some code that copies as you specified to column A on sheet2. The original data is in column A of sheet1.
Option Explicit
Sub suit()
Dim s1 As Worksheet, s2 As Worksheet
Set s1 = Sheets("Sheet1")
Set s2 = Sheets("Sheet2")
Dim lr As Long, lr2 As Long
lr = s1.Range("A" & Rows.Count).End(xlUp).Row
Dim i As Long
Application.ScreenUpdating = False
For i = 1 To lr
lr2 = s2.Range("A" & Rows.Count).End(xlUp).Row + 1
If s1.Range("A" & i) = "Suit" Then
s1.Range("A" & i + 1).Copy s2.Range("A" & lr2)
End If
Next i
Application.CutCopyMode = False
Application.ScreenUpdating = True
MsgBox "completed"
End Sub
Bookmarks