Hi,
Yes you can but you don't provide too much help on precisely what you want
to achieve so perhaps you can build on this. Right click your worksheet, view
code and paste this in. As soon as the date in A1 is in the past you get a
popup when you activate the sheet.
Private Sub Worksheet_Activate()
If IsDate(Range("A1").Value) And Range("A1").Value < Date Then
MsgBox "Overdue action " & Range("A1").Value
End If
End Sub
Mike
> Hi
>
> Can you set up Excel to popup when something is overdue a certain date?
JCS - 22 May 2008 14:22 GMT
Hi
What i have is a spreadsheet with dates of PO's ordered, i would like for it
to notify me when it passes the date of delivery therefore it being overdue!
I'm sorry but i don't understand what you mean by view code?? Thanks for
your prompt answer.
> Hi,
>
[quoted text clipped - 14 lines]
> >
> > Can you set up Excel to popup when something is overdue a certain date?
if you could settle for a color signal, you could use conditional
formatting.........
choose Format, Conditional Formatting:
if cell value is greater than or equal to
=today()+90 (for example)
then select formatting.
hth
susan
> Hi
>
> Can you set up Excel to popup when something is overdue a certain date?