Hello,
I have a form with textboxes and comboboxes and a Button,
when button is clicked,
a new query is made, with criteria based on boxes on form.
For example this one :
What would be the statement for a range between to comboboxes.
BoxID
I have 2 comboboxes (cmbBox1 and cmbbox2), show only records equal and between the ones selected in cmbBox1 and 2.
What happens if only one is filled?
thanks,
Sam
I have a form with textboxes and comboboxes and a Button,
when button is clicked,
a new query is made, with criteria based on boxes on form.
For example this one :
If Not IsNull(Me.cmbType) Then Where = Where & " AND [TypeID] = " & Me.cmbType
What would be the statement for a range between to comboboxes.
BoxID
I have 2 comboboxes (cmbBox1 and cmbbox2), show only records equal and between the ones selected in cmbBox1 and 2.
What happens if only one is filled?
thanks,
Sam