I have a query where the following expression is used on one field name (in a form selected by two comboboxes named "name_from" and "name_till"
>=[Forms]![Selection]![NAME_FROM] And <=[Forms]![Selection]![NAME_TILL]
Suppose there are five names:
Aaaa
Baaa
Caaa
Daaa
Eaaa
and i select in the first combobox (name_from) Aaaa and in the last one (name_till) Daaa then the result is: Aaaa, Baaa, Caaa, Daaa
But when i select in the first combobox (name_from) Aaaa and in the last one (name_till) Aaaa also, then the result is: #Error.
This i don't understand the expression used is not an in between expression, but still the result acts like one(!?)
Can anyone help me with this please?
>=[Forms]![Selection]![NAME_FROM] And <=[Forms]![Selection]![NAME_TILL]
Suppose there are five names:
Aaaa
Baaa
Caaa
Daaa
Eaaa
and i select in the first combobox (name_from) Aaaa and in the last one (name_till) Daaa then the result is: Aaaa, Baaa, Caaa, Daaa
But when i select in the first combobox (name_from) Aaaa and in the last one (name_till) Aaaa also, then the result is: #Error.
This i don't understand the expression used is not an in between expression, but still the result acts like one(!?)
Can anyone help me with this please?
Last edited: