I think that this is one of those things that excel will remember until you
change it (or you reopen excel).
You could add a dummy Find macro to a workbook that's always opened with
excel--maybe personal.xls???
Then have that macro do the find you want and close to get out of the way:
Or just create a new workbook and put this in a general module:
Option Explicit
Sub auto_open()
With Worksheets(1)
.Cells.Find What:="", After:=.Cells(1), _
LookIn:=xlValues, LookAt:=xlPart, _
SearchOrder:=xlByColumns, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False
End With
ThisWorkbook.Close savechanges:=False
End Sub
(save the workbook before you test--that last line will close it and not save
the workbook!)
Name it DummyFind.xls, put it in you XLStart folder.
If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm