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