Hello Brindle,
Following is a code I did for another Poster elsewhere quite some time ago:-
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("L1")) Is Nothing Then Exit Sub
If Target.Count > 1 Then Exit Sub
If Target.Value = vbNullString Then Exit Sub
For Each cell In ActiveSheet.Range("A2:A10")
If UCase(cell.Value) Like UCase("*" & Target & "*") Then
cell.EntireRow.Select
End If
Next
End Sub
It is a Worksheet_Change event and needs to be placed in the worksheet module of your main sheet. Obviously you would have to change the range to suit yourself.
I've attached the sample work book I did for the Poster back then, but I feel that you may need an add-in to act more like a Google search box so have a look at the following link:-
https://www.excelcampus.com/vba/sear...op-down-lists/
It may be just what you need and I believe that it is free!
Cheerio,
vcoolio.
Bookmarks