Im having trouble trying to get a report to pull based on selections you make from 3 combo boxes.
What I have are 3 combo boxes city, state, and zip code. What im trying to do is make is so you can select either one, two, or all three combo boxes and then press a button that will create a report showing the city state and zip along with an id number that is on the back end. I have been trying to get a query to run everything once you press the button but keep getting blank records. In the criteria of the query for the city state and zip I have the expression
Im not sure what else i need to put in to make it pull the information plus im not sure if I need to tell the command button to do more when you click it.
Also i only need the report to display in a preview mode I dont need to print the report at all.
What I have are 3 combo boxes city, state, and zip code. What im trying to do is make is so you can select either one, two, or all three combo boxes and then press a button that will create a report showing the city state and zip along with an id number that is on the back end. I have been trying to get a query to run everything once you press the button but keep getting blank records. In the criteria of the query for the city state and zip I have the expression
Code:
[Forms]![FIDLookUp]![cboCombo0] [Forms]![FIDLookUp]![cboCombo2] [Forms]![FIDLookUp]![cboCombo4]
Also i only need the report to display in a preview mode I dont need to print the report at all.
Comment