Hi D Dubya,
Here's a routine that if you write the phrase ie COMMERCIAL POWER FAIL on your sheet (or you could use it as a header)
then select that phrase - and run it, you'll get a listing of all the cells in A that contain that phrase.
Sub Sandy(): Dim P As String, i As Integer, A As Range, R As Range
Set A = Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
P = Selection: i = ActiveCell.Row
For Each R In A
If InStr(1, R, Selection) Then
i = i + 1: Cells(i, ActiveCell.Column) = Left(R, 8)
End If: Next: End Sub
Bookmarks