I have a form with a combo box. Selecting certain options in the combo box will trigger different actions in the form.
I'd like to have the first dropdown option automatically selected when I open the form or go to the next record. Using the VBA command ComboBox.Value = "Option1" only inputs a string into the combo box; it's not the same as clicking an option manually and does not trigger the other actions.
How do I select an option in a combo box dropdown in a way that Access recognizes it the same as clicking it?