I have been tinkering with this for a while now, I have the below code working but it searches more than I would like it to. I would like it to just search column C and not the
I would try it like this
xlFormulas
finds cells in hidden rows, xlValues
skips themno need for the Select
Dim rng1 As Range
Set rng1 = Sheets("State Agent List").Range("C1:C10000").Find(CStr(ComboBox22.Value), [c10000], xlFormulas, xlPart, , xlNext)
If Not rng1 Is Nothing Then
ActiveWindow.ScrollRow = rng1.Row
Else
MsgBox "Location not listed."
End If