I have a rental database. I want to use a query with the start date to use for a report. I made a form with unbound txt boxes and a button to run the report. Everything works exept my form. If I run the query it ask for the start and end date and shows the records. It does the same with the report. If i use the form it just shows a blank report. Below is how i programmed the form and query. can anyone tell me why the report is blank when i use the form?
On my form, I put two unbound text boxes. Let's call them txtStartDate and txtEndDate
2. In My query, in the Date column, I put the following criteria expression...
CODE
Between Forms!frmReportSelect!txtStartDate And Forms!frmReportSelect!txtEndDate
On my form, I put two unbound text boxes. Let's call them txtStartDate and txtEndDate
2. In My query, in the Date column, I put the following criteria expression...
CODE
Between Forms!frmReportSelect!txtStartDate And Forms!frmReportSelect!txtEndDate