Thread: adding macro
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bill James[_2_] Bill James[_2_] is offline
external usenet poster
 
Posts: 13
Default adding macro

Put the following sub in ThisWorkbook module:

Private Sub Workbook_Open()
msgbox "Hello, World!"
End Sub


"Lynn" wrote in message
...
hi,
how can i make a macro available for use everytime i start excel?
thanks