I have a Form that I am using for Reporting. I have a text box on the form that has a query set as its Control Source. I would like for the text box to update based on a selection from a combo box. The query underlying the text box basically takes the value of the combo box as its criteria. I have tried using the DoCmd.Requery "txtReportDescription" but is doesn't work. Below is the code I am using. The text box just displays #Name?
Any help is greatly appreciated....
Any help is greatly appreciated....
Code:
Private Sub CmbReportList_Change()
DoCmd.Requery "txtReportDescription"