Opening Message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I open a workbook I would like a dialog box that has a message that
opens on the screen and the user has to click the ok button to clear the
message and start working. Any help would be appreciated.

Thanks in advance
greg
 
In the VBA editor right click on workbook and 'view code' change the right
hand box to say open and add the following:

Private Sub Workbook_Open()

MsgBox "Your text here", vbOKOnly, "Title"

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top