G
Guest
I have a form where I need the LoadDate updated to the Now() date based upon
the LoadStatus equally Full Outbound. I have a similar situation where
another time stamp is updated based upon the LoadStatus selected and updates
my underlying table. It's the same as below; however, this one won't work
for me. Do you know what I am doing wrong here???
The code is as follows:
Private Sub cboLoadStatusID_Change()
If Me.cboLoadStatusId = "5" Then
Me.LoadDate = Now()
End Sub
Thanks!
the LoadStatus equally Full Outbound. I have a similar situation where
another time stamp is updated based upon the LoadStatus selected and updates
my underlying table. It's the same as below; however, this one won't work
for me. Do you know what I am doing wrong here???
The code is as follows:
Private Sub cboLoadStatusID_Change()
If Me.cboLoadStatusId = "5" Then
Me.LoadDate = Now()
End Sub
Thanks!