View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default Automatically run macro when userform is opened

Use the Initialize event...

Private Sub UserForm_Initialize()
Call Macro1
End Sub

--
Rick (MVP - Excel)


"jason" wrote in message
...
basically


sub userform_open()

call macro1

end sub


this is not correct but demonstrates what i am attempting to accomplish