How to set up a list of activities with reminders

L

Leothe1

How do I set up a list of activities with reminders that pop up or something
when the workbook is opened.
 
J

JulieD

Hi

this can be done using the workbook_open event (right mouse click on a sheet
tab, choose view code, on the left in the project explorer double click on
"ThisWorkbook" underneath where you see the name of your workbook, the code
goes in the right hand side of the screen)

e.g.

Private Sub Workbook_Open()
If Format(Now, "dd/mm/yyyy") = Format(Sheets(1).Range("C3"),
"dd/mm/yyyy") Then
MsgBox "Happy Birthday"
End If
MsgBox "Don't forget to enter the next number into cell D6"
Sheets(1).Range("D6").value = InputBox("What number?")
End Sub

Cheers
JulieD
 

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

Top