How call procedure when worksheet opened?
Use the Workbook_Open event, not Activate
--
HTH
Bob Phillips
(remove nothere from the email address if mailing direct)
"John" wrote in message
...
The following macro call works fine when a specific cell is updated. How
do I
call the macro when the worksheet is first opened?
Private Sub Worksheet_Activate(ByVal Target As Excel.Range)
If Target.Address = Range("hanwono").AddressLocal Then Call
PullExistingDataToHand
End Sub
|