I'm needing to change the selections of two combo boxes to the a default value when the contents of a text box change. I have an audit trail tied to the fields, and I need the user to select a new 'change reason' and 'change initiator' (the combo boxes Qtr1Date1Changer and Qtr1Date1Initiator) when an inventory date changes (the text box Qtr1Date1). I have an AfterUpdate event for the text box to record the new date in the audit table; can I add something here to change the contents of the two combo boxes if the date changes to a default value?
Private Sub Qtr1Date1_AfterUpdate()
Call LogChanges(StoreCode)
End Sub