From: Anju Bala Anju on
How can i set up pop up reminders in excell sheet
From: Dave Peterson on
I just use a formula in a cell:

=if(today()>date(2010,1,31),"It's not January","It's January")



Anju Bala wrote:
>
> How can i set up pop up reminders in excell sheet

--

Dave Peterson
From: מיכאל (מיקי) אבידן on
This should wake you up at 16:30 PM
----------------------------------------
Sub Reminder()
If Time = TimeSerial(16, 30, 0) Then
MsgBox "Wake Up! The time is: " & Time
Exit Sub
End If
Application.OnTime (Now + TimeSerial(0, 0, 1)), "Reminder"
End Sub
--------------
Micky


"Anju Bala" wrote:

> How can i set up pop up reminders in excell sheet