This is what I have in the Personal Workbook and it does not work for me.
What am I doing wrong?
------------------------------------------------------------------------------
Sub Custom_Find_Dialog()
'
' Custom_Find_Dialog Macro
'
'
Private Sub Workbook_Open()
Worksheets(1).Cells.Find What:=vbNullString, _
LookIn:=xlValues, SearchOrder:=xlByColumns
End Sub
------------------------------------------------------------------------

Signature
Thank you so much for your help... Elaine
> One way:
>
[quoted text clipped - 14 lines]
> >
> > I'm glad all of you are there to help people like me.
JE McGimpsey - 19 Feb 2007 23:13 GMT
You shouldn't have the
Sub Custom_Find_Dialog()
line. In fact, what you've shown *should* give you a compile error.
Make sure that the Workbook_Open() macro is in the ThisWorkbook module,
not a regular code module.
> This is what I have in the Personal Workbook and it does not work for me.
> What am I doing wrong?
[quoted text clipped - 30 lines]
> > >
> > > I'm glad all of you are there to help people like me.
Elaine - 19 Feb 2007 23:30 GMT
It works!!! I'm soooo glad for people like you that have the patience and
expertise to help others!!!

Signature
Thank you... Elaine
> You shouldn't have the
>
[quoted text clipped - 39 lines]
> > > >
> > > > I'm glad all of you are there to help people like me.
Dave Peterson - 19 Feb 2007 23:14 GMT
JE wrote to put this code:
Private Sub Workbook_Open()
Worksheets(1).Cells.Find What:=vbNullString, _
LookIn:=xlValues, SearchOrder:=xlByColumns
End Sub
behind the ThisWorkbook module in your personal.xls workbook's project.
Don't try to bury it in an existing subroutine (like custom_find_document).
By using Workbook_Open under ThisWorkbook, then the code will run each time
excel opens this file. By using personal.xls (in your XLStart folder), excel
will open that file each time it starts.
> This is what I have in the Personal Workbook and it does not work for me.
> What am I doing wrong?
[quoted text clipped - 31 lines]
> > >
> > > I'm glad all of you are there to help people like me.

Signature
Dave Peterson
Elaine - 19 Feb 2007 23:31 GMT
What incredible people all of you are!!!

Signature
A BIG thank you... Elaine
> JE wrote to put this code:
>
[quoted text clipped - 46 lines]
> > > >
> > > > I'm glad all of you are there to help people like me.