how can i get an email sent to me when a date in an excel spreads.

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

Guest

I have a spreadsheet that tracks contracts. How can I get an email sent to me
when a date for a paricular contract expiration is coming up?
 
Hi George

You can use the workbook open event
Example for 14 days

Private Sub Workbook_Open()
If Sheets("Sheet1").Range("A1").Value > Date - 14 Then
MsgBox "macroname"
End If
End Sub

Read Chip Pearson's site about Events
http://www.cpearson.com/excel/events.htm
 
Ok, I think I will have to find someone that knows VB or macros in Excel,
cuz I don't know where to start. I did manage to get an email sent when a
change was made in a cell as per the program on your site, but not sure how
to specify dates in a cell, do some calcuations and logic and then send an
email.

Thanks all
 

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