Hi all. I am trying to figure out the code for the following problem: I have a "Closed Date" text box that I want updated to the current date and time ONLY when someone selects "Closed" from a combo box control on the same form. Anyone have any ideas how I do this with VB? I have what I thought was the correct code below, but it didn't work.
Thanks in advance!
Jerry Horgan
Private Sub Closed_Date_Change()
If Bug_Status = "Closed" Then
Closed_Date = Now()
Else: Closed_Date = ""
End If
End Sub
Thanks in advance!
Jerry Horgan
Private Sub Closed_Date_Change()
If Bug_Status = "Closed" Then
Closed_Date = Now()
Else: Closed_Date = ""
End If
End Sub