I've got a two fields called [Type] and [Date Submitted]. I use:
Private Sub Type_Change()
Date_Submitted = Now()
End Sub
to create to populate [Date Submitted]. However, I don't want [Date Submitted] changed every time I change [Type]. I would like to create my record, select a type having [Date Submitted] populated with the date and time, and for [Date Submitted] to keep that date no matter how many times I change [Type]. I realize that "On change" is not the event I should be using to accomplish this, but I don't see any other event I can use or a "can change" property. Maybe vba is the way to do this. Any suggestions?
Private Sub Type_Change()
Date_Submitted = Now()
End Sub
to create to populate [Date Submitted]. However, I don't want [Date Submitted] changed every time I change [Type]. I would like to create my record, select a type having [Date Submitted] populated with the date and time, and for [Date Submitted] to keep that date no matter how many times I change [Type]. I realize that "On change" is not the event I should be using to accomplish this, but I don't see any other event I can use or a "can change" property. Maybe vba is the way to do this. Any suggestions?