View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Doug Doug is offline
external usenet poster
 
Posts: 460
Default Run-time error '424': Object Required

I have 2 userforms. The first opens just fine, the second gives me the
Run-time error. This is the code I'm using. How is one form different than
the other?

Sub Workbook_Open()
ActiveSheet.Range("H15").Select
If Selection.Value = "" Then
UserForm1.Show
Else
UserForm2.Show
End If