Hi
Makes some assumptions (:-)) but should get you started.
Sub aaa()
Dim OutSH As Worksheet
Set OutSH = Sheets("Summary")
For Each sh In Sheets
If sh.Name <> "Summary" Then
Set findit = sh.Range("G:G").Find(what:="Case Closed")
If Not findit Is Nothing Then
With sh
firstadd = findit.Address
Do
.Cells(findit.Row, 1).Resize(1, 5).Copy Destination:=OutSH.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
Set findit = .Range("G:G").Find(what:="Case Closed", after:=findit)
Loop Until findit.Address = firstadd
End With
End If
End If
Next sh
End Sub
rylo
Bookmarks