View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Charles Harmon Charles Harmon is offline
external usenet poster
 
Posts: 48
Default HIGHLIGHT A DATE 10 DAYS BEFORE IT IS PAST DUE

Hi,

Try

Sub Past_Due()
Dim fd As Date
fd = Date
If fd = Cells(1, 1).Value + 20 Then
MsgBox "10 day's before past due"
End If
End Sub


"cookie04" wrote in message
...