Select SQL Query using input from form fields Access 2007
问题 I have a form with two combo boxes and a button that runs a select query with the code below. Currently the issue is it doesn't take the input of the combo boxes as the field input. Is this something that can be solved in SQL or would I have to build a form using VBA? SELECT Field=[Forms]![TestInteractForm]![Combo18], Field=[Forms]![TestInteractForm]![Combo20] FROM TestInteract; 回答1: Although it may not be apparent, your goal is basically the same as using a query parameter in the SELECT