Hello,
The way my database is set up is that I have a form that acts as a guide. This form just has some buttons that open up the actual data-input forms. I wanted to add to this guide a combo- box with the list of records in one of the forms. All of the records have an ID number, so the combo-box is right now populated by those ID numbers. I want it so that when I click on a specific ID number it opens of the form containing the records that correspond to the selected ID.
So far searching for solutions online, I tried using this vba code which seemed the most common "solution" : DoCmd.OpenForm "formname", , , "[ID]=" & Me![comboboxname]
This code opens the form successfully, however the form is completely blank for some reason. Am I using the correct code? are there any better alternatives?