This is the start of what you need
It searches for the word select in the selected range and copies the complete row to a new sheet.
It is easy to change the search range and the search text.
I will modify the code to delete the existing summary sheet and create a new one each time the macro is run.
Sub Select_Select()
Dim rngFind As Range
Dim strValueToPick As String
Dim rngPicked As Range
Dim rngLook As Range
Dim strFirstAddress As String
'***************************************************
'This line selects the whole spreadsheet to search. Columns("A:A").select would search column A only
Cells.Select
'***************************************************
Set rngLook = Selection
''***************************************************
'This defines your search string
strValueToPick = "SELECT"
'***************************************************
With rngLook
Set rngFind = .Find(strValueToPick, .Cells(1, 1), LookIn:=xlValues, lookat:=xlWhole)
If Not rngFind Is Nothing Then
strFirstAddress = rngFind.Address
Set rngPicked = rngFind
Do
Set rngPicked = Union(rngPicked, rngFind)
Set rngFind = .FindNext(rngFind)
Loop While Not rngFind Is Nothing And rngFind.Address <> strFirstAddress
End If
End With
If Not rngPicked Is Nothing Then
rngPicked.EntireRow.Select
End If
Selection.Copy
Workbooks.Add
ActiveSheet.Paste
End Sub
This is the revised code. Make sure you have a Sheet1 and a Summary Sheet.
Sub Select_Select()
Dim rngFind As Range
Dim strValueToPick As String
Dim rngPicked As Range
Dim rngLook As Range
Dim strFirstAddress As String
Application.DisplayAlerts = False
Sheets("Summary").Delete
Application.DisplayAlerts = True
Sheets("Sheet1").Select
Cells.Select
Set rngLook = Selection
strValueToPick = "SELECT"
With rngLook
Set rngFind = .Find(strValueToPick, .Cells(1, 1), LookIn:=xlValues, lookat:=xlWhole)
If Not rngFind Is Nothing Then
strFirstAddress = rngFind.Address
Set rngPicked = rngFind
Do
Set rngPicked = Union(rngPicked, rngFind)
Set rngFind = .FindNext(rngFind)
Loop While Not rngFind Is Nothing And rngFind.Address <> strFirstAddress
End If
End With
If Not rngPicked Is Nothing Then
rngPicked.EntireRow.Select
End If
Selection.Copy
Sheets.Add After:=ActiveSheet
ActiveSheet.Name = "Summary"
ActiveSheet.Paste
End Sub
Bookmarks