Notifications in Excel?

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

Guest

Is it possible to either have excel notify you when certain dates in the
worksheet come due or to export that information to another application that
will do that. I know that you can have a task created in Outlook however
with the amount of dates I'm working with, that would be somewhat impractical
since you have to manually setup each task. Is there an easier way to do
this? Thanks.
 
does this help?

Sub datenotify()
If Date = "1/3/2005" Then MsgBox "hi"
End Sub
 
I can't give you the specific code, but I know it's possible to interrogate
a list of Excel files and extract specific cell values (dates?) and once in
your interrogation workbook, you can compare those dates to standards to see
if they coincide, exceed, etc........It's sorta reverse-english........it
will "tell" you, but you have to ask!..........

Vaya con Dios,
Chuck, CABGx3
 
That was a macro. It you want a formula, try this.

=IF(TODAY()=DATE(2005,1,4),1,2)
 

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