hi ,
all
right i'm trying to make a label show if the date in my next service field is 10 days till its due
this what I have on a on current form event this works great but would like the message to appear 10 days before the date is passed
also tried this with no joy
thanks in advance
shane
all
right i'm trying to make a label show if the date in my next service field is 10 days till its due
this what I have on a on current form event this works great but would like the message to appear 10 days before the date is passed
Code:
If Me.NextService < Date Then
Me.overdue.Visible = True
Else
Me.overdue.Visible = False
End If
also tried this with no joy
Code:
If Me.NextService < Date <= 10 Then
Me.overdue.Visible = True
Else
Me.overdue.Visible = False
End If
thanks in advance
shane