Sheet activate question
Hi Robert
Just put something like this in the ThisWorkbook module
Private Sub Workbook_Open()
Sheets("Sheet1").Activate
End Sub
Then when sheet1 is activated the worksheet_activate code will run on
that sheet.
Take care
Marcus
|