View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Nigel[_2_] Nigel[_2_] is offline
external usenet poster
 
Posts: 735
Default activate userform when a worksheet tab is selected

Place code on the Workbook code page

Private Sub Workbook_SheetActivate(ByVal Sh As Object)
If Sh.Name = "Sheet1" Then
UserForm1.Show
End If
End Sub

--

Regards,
Nigel




"James" wrote in message
...
Hello,

How do I automatically activate a userform when a user selects a specific
worksheet tab? What's the code for that?

Thank you