Hello everyone. I have a question regarding Access auto entry and I hope that someone will be able to answer me. I have a form with several comboboxes. I would like to give them default values based on entry in initials combobox. Is it possible to accomplish? Thank you in advance.
Hello there. It is possible to accomplish this kind of auto entry in Access. You will have to add following code:” Me!ComboOrField.Defaultvalue=Me!ComboOrField.Value”. This code goes in AfterUpdate-Event. You can also add following code:” Me!ComboOrField.TabStop=false” to prevent user to tab into fields once they have default values.