I'm having an issue with a query search for invoices where the due date of the invoices searched is provided through a combo box in a form
the combo box has the following code:
it basically runs the query which has the condition below which equates invoice due date to:
to which i get a 3071 expression too complex error. same error if I run the query directly. ran the same setup for employee names and it worked flawlessly. When i ran that query it returned a prompt for [Forms]![form name]![Combo0]
umm, help? :D
the combo box has the following code:
Code:
DoCmd.OpenQuery "Invoice by Due Date"
Me.Combo0 = ""
Code:
[Forms]![Timesheet by Employee]![Combo0]
umm, help? :D
Comment