E
Emma
Hi, I'm trying to have a form open the correct data and if there's no data
for the form ie no worker then add the current worker and current date.
Unfortunately it's not working. Everytime I open a form that has information
the new worker and date are being added. Here's my code can anybody help me?
Private Sub Form_Current()
If IsNull(Me![3M Worker]) Then
Me![3M Worker] = CurrentUser
Me![Follow Up Date 3M] = Date
End If
End Sub
for the form ie no worker then add the current worker and current date.
Unfortunately it's not working. Everytime I open a form that has information
the new worker and date are being added. Here's my code can anybody help me?
Private Sub Form_Current()
If IsNull(Me![3M Worker]) Then
Me![3M Worker] = CurrentUser
Me![Follow Up Date 3M] = Date
End If
End Sub