kupe
Technical User
- Sep 23, 2002
- 376
If the field, LastJobEndDate, is more than 28 days old, a message should appear in field DailyGrind 'Available'.
For some unknown reason, this sub won't change the message. H e l p, please Experts.
Private Sub Form_Current()
If Abs(DateDiff("d", LastJobEndDate, Date)) >= 28 Then
Forms!frmMatrix.frmWorkers.Form!DailyGrind = "Available"
End If
End Sub
For some unknown reason, this sub won't change the message. H e l p, please Experts.
Private Sub Form_Current()
If Abs(DateDiff("d", LastJobEndDate, Date)) >= 28 Then
Forms!frmMatrix.frmWorkers.Form!DailyGrind = "Available"
End If
End Sub