How can I display a message for users on file open?

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

Guest

I am interested in creating a default instructional reminder for all users of
a spreadsheet I have created. How can I do this and have the reminder
displayed each time the file is opened?
 
1. With the workbook open, press Alt-F11.
2. From the menu, choose View, then Project Explorer.
3. Open the section called "ThisWorkbook"
4. Type the follwing:
Sub MyMessage

end Sub
 
I think Ian meant to type this for #4:

sub workbook_open()
Msgbox "don't forget to" & vblf & _
"pick up your laundry on Friday!"
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