> The following macro call works fine when a specific cell is updated. How do I
> call the macro when the worksheet is first opened?
[quoted text clipped - 3 lines]
> PullExistingDataToHand
> End Sub
Tim, I'm pretty new at this VBA stuff, but I think this is almost all I need.
What condition to I check to be sure I'm on the "Hand" sheet to call this
procedure?
> In the ThisWorkbook module
>
[quoted text clipped - 14 lines]
> > PullExistingDataToHand
> > End Sub
Tom Ogilvy - 23 Jan 2006 01:13 GMT
Private Sub Workbook_Open()
If lcase(ThisWorkbook.Activesheet.Name) = "hand" then
PullExistingDataToHand
End if
End Sub
If you only want it to run when you open workbook and the default sheet is
named "Hand"

Signature
Regards,
Tom Ogilvy
> Tim, I'm pretty new at this VBA stuff, but I think this is almost all I need.
> What condition to I check to be sure I'm on the "Hand" sheet to call this
[quoted text clipped - 18 lines]
> > > PullExistingDataToHand
> > > End Sub