Only through VBA
AFAIK
But it takes no longer to type into the find box than it does to type into a
cell.
What would you want to do with the results of your search?
This macro colors the found cells as gray.
Sub findthings()
whatval = ActiveSheet.Range("A1").Value
With Worksheets(1).UsedRange
Set c = .Find(whatval, LookIn:=xlValues, lookat:=xlPart)
If Not c Is Nothing Then
FirstAddress = c.Address
Do
c.Interior.Pattern = xlPatternGray50
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address < FirstAddress
End If
End With
End Sub
Gord Dibben MS Excel MVP
On Thu, 22 Oct 2009 12:11:03 -0700, adam
wrote:
How do I make a cell a search/find cell for the spreadsheet.
I want to avoid having to do ctrl+f and then put it in. I know it seems
small but this has to be done hundreds of times a day and deleting just this
step would be nice. So all data is in column 1. I want Cell A1 to be the
search/find cell for the rest of the spreadsheet. Is there a way to do this
so typing something up in cell A1 would bring up that data in the spreadsheet
as if I were doing ctrl+f?